ETH Price: $3,486.40 (+1.97%)
Gas: 13 Gwei

Token

Alien Kimera Protocol (AKP)
 

Overview

Max Total Supply

1,701 AKP

Holders

421

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

During the Alien Kimera Protocol, some DraGONS were crossed with alien DNA, turning into scary monsters. Each AK will be a ticket to redeem a Gorilla Nemesis VX 1:1. GONS VX will not be random, but you will get the VX version of the GON you choose, from the ones you own. Th...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AlienKimeraProtocol

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

















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: contracts/WithLimitedSupply.sol


pragma solidity ^0.8.0;


/// @author 1001.digital 
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _maxSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _maxSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return maxSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
}
// File: contracts/RandomlyAssigned.sol


pragma solidity ^0.8.0;


/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _maxSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _maxSupply, uint256 _startFrom)
        WithLimitedSupply(_maxSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = maxSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}
















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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


/**
 * @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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

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



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @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: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

// File: contracts/AlienKimeras.sol

pragma solidity ^0.8.0;


abstract contract DraGONS {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

abstract contract AmberToken {
  function burn(address _from, uint256 _amount) external virtual;
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract AlienKimeraProtocol is ERC721Enumerable, Ownable, RandomlyAssigned { 
  DraGONS private dragons;

  mapping(address => uint256) public lastKimera;

  uint constant public MAX_KIMERAS = 5000;
  uint256 public constant kimeraPrice = 60000000000000000000; //60 AMBER

  address private dragonsContract = 0xF7f83CbB51BA65FB19AB9ED6ca9520E637b6f192;
  bool public AkpIsActive = false;
  uint256 public maxKimeras;
  string private baseURI;

  AmberToken public amberToken;

  constructor() ERC721("Alien Kimera Protocol", "AKP") RandomlyAssigned(MAX_KIMERAS, 0) {
    maxKimeras = MAX_KIMERAS;
    dragons = DraGONS(dragonsContract);
  }

  function setAmberToken(address _amber) external onlyOwner {
    amberToken = AmberToken(_amber);
  }


  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }
  
  function setBaseURI(string memory uri) public onlyOwner {
    baseURI = uri;
  }

  function flipAkpState() public onlyOwner {
    AkpIsActive = !AkpIsActive;
  }

  /**
    * Mint an Alien Kimera
    */
  function AKProtocol() public {
    require(AkpIsActive, "AK Protocol must be active to mint an Alien Kimera");
    require(totalSupply() < maxKimeras, "Purchase would exceed the max supply of Alien Kimeras");
    uint balanceDraGONS = dragons.balanceOf(msg.sender);
    uint balanceAmberToken = amberToken.balanceOf(msg.sender);
    require(balanceDraGONS > 0, "Must own at least one DraGON to mint an Alien Kimera");
    require(balanceAmberToken >= kimeraPrice, "Insufficient amount of $AMBER");
    uint256 time = block.timestamp;
    uint256 timerUser = lastKimera[msg.sender];
    require(time - timerUser >= 864000, "You can mint only 1 Alien Kimera every 10 days");

    uint256 mintIndex = nextToken();
    _safeMint(msg.sender, mintIndex);
    amberToken.burn(msg.sender, kimeraPrice);
    lastKimera[msg.sender] = time;
  }

  function getLastKimera(address user) external view returns(uint256) {
    uint256 lastK = lastKimera[user];
    return lastK;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AKProtocol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"AkpIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_KIMERAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amberToken","outputs":[{"internalType":"contract AmberToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipAkpState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getLastKimera","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"kimeraPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastKimera","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxKimeras","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":[],"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":"_amber","type":"address"}],"name":"setAmberToken","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":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","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"}]

6080604052601180546001600160a81b03191673f7f83cbb51ba65fb19ab9ed6ca9520e637b6f1921790553480156200003757600080fd5b50604080518082018252601581527f416c69656e204b696d6572612050726f746f636f6c00000000000000000000006020808301918252835180850190945260038452620414b560ec1b90840152815161138893600093859390926200009f91869162000151565b508051620000b590600190602084019062000151565b5050506000620000ca6200014d60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c55600e5550611388601255601154600f80546001600160a01b0319166001600160a01b0390921691909117905562000234565b3390565b8280546200015f90620001f7565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b600181811c908216806200020c57607f821691505b602082108114156200022e57634e487b7160e01b600052602260045260246000fd5b50919050565b61237380620002446000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063c0bfda92116100ad578063e14ca3531161007c578063e14ca35314610414578063e95c32df1461041c578063e985e9c51461042f578063f26089bc1461046b578063f2fde38b1461047b57600080fd5b8063c0bfda92146103de578063c87b56dd146103f1578063ce8b702014610404578063d5abeb011461040c57600080fd5b80639f181b5e116100e95780639f181b5e146103a7578063a22cb465146103af578063b88d4fde146103c2578063bf615c40146103d557600080fd5b8063715018a61461035d57806387ac84fe146103655780638da5cb5b1461038e57806395d89b411461039f57600080fd5b8063299a15e9116101925780634f6ccce7116101615780634f6ccce71461031157806355f804b3146103245780636352211e1461033757806370a082311461034a57600080fd5b8063299a15e9146102cf5780632f745c59146102e357806335343a6c146102f657806342842e0e146102fe57600080fd5b806311ae30dc116101ce57806311ae30dc1461027d57806313e2c8da1461029457806318160ddd146102b457806323b872dd146102bc57600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611fa5565b61048e565b60405190151581526020015b60405180910390f35b6102306104b9565b60405161021f91906120f2565b61025061024b366004612028565b61054b565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611f7b565b6105e5565b005b61028660125481565b60405190815260200161021f565b6102866102a2366004611e39565b60106020526000908152604090205481565b600854610286565b61027b6102ca366004611e87565b6106fb565b60115461021390600160a01b900460ff1681565b6102866102f1366004611f7b565b61072c565b61027b6107c2565b61027b61030c366004611e87565b61080d565b61028661031f366004612028565b610828565b61027b610332366004611fdf565b6108bb565b610250610345366004612028565b6108fc565b610286610358366004611e39565b610973565b61027b6109fa565b610286610373366004611e39565b6001600160a01b031660009081526010602052604090205490565b600a546001600160a01b0316610250565b610230610a6e565b610286610a7d565b61027b6103bd366004611f3f565b610a8d565b61027b6103d0366004611ec3565b610b52565b61028661138881565b61027b6103ec366004611e39565b610b8a565b6102306103ff366004612028565b610bd6565b61027b610cb1565b600c54610286565b61028661107b565b601454610250906001600160a01b031681565b61021361043d366004611e54565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610286680340aad21b3b70000081565b61027b610489366004611e39565b611092565b60006001600160e01b0319821663780e9d6360e01b14806104b357506104b38261117d565b92915050565b6060600080546104c89061224c565b80601f01602080910402602001604051908101604052809291908181526020018280546104f49061224c565b80156105415780601f1061051657610100808354040283529160200191610541565b820191906000526020600020905b81548152906001019060200180831161052457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f0826108fc565b9050806001600160a01b0316836001600160a01b0316141561065e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c0565b336001600160a01b038216148061067a575061067a813361043d565b6106ec5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c0565b6106f683836111cd565b505050565b610705338261123b565b6107215760405162461bcd60e51b81526004016105c09061218c565b6106f6838383611332565b600061073783610973565b82106107995760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146107ec5760405162461bcd60e51b81526004016105c090612157565b6011805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6106f683838360405180602001604052806000815250610b52565b600061083360085490565b82106108965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105c0565b600882815481106108a9576108a96122f8565b90600052602060002001549050919050565b600a546001600160a01b031633146108e55760405162461bcd60e51b81526004016105c090612157565b80516108f8906013906020840190611d0e565b5050565b6000818152600260205260408120546001600160a01b0316806104b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c0565b60006001600160a01b0382166109de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610a245760405162461bcd60e51b81526004016105c090612157565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600180546104c89061224c565b6000610a88600b5490565b905090565b6001600160a01b038216331415610ae65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c0565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b5c338361123b565b610b785760405162461bcd60e51b81526004016105c09061218c565b610b84848484846114dd565b50505050565b600a546001600160a01b03163314610bb45760405162461bcd60e51b81526004016105c090612157565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546060906001600160a01b0316610c555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c0565b6000610c5f611510565b90506000815111610c7f5760405180602001604052806000815250610caa565b80610c898461151f565b604051602001610c9a929190612086565b6040516020818303038152906040525b9392505050565b601154600160a01b900460ff16610d255760405162461bcd60e51b815260206004820152603260248201527f414b2050726f746f636f6c206d7573742062652061637469766520746f206d696044820152716e7420616e20416c69656e204b696d65726160701b60648201526084016105c0565b60125460085410610d965760405162461bcd60e51b815260206004820152603560248201527f507572636861736520776f756c642065786365656420746865206d617820737560448201527470706c79206f6620416c69656e204b696d6572617360581b60648201526084016105c0565b600f546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610dda57600080fd5b505afa158015610dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e129190612041565b6014546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610e5b57600080fd5b505afa158015610e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e939190612041565b905060008211610f025760405162461bcd60e51b815260206004820152603460248201527f4d757374206f776e206174206c65617374206f6e6520447261474f4e20746f206044820152736d696e7420616e20416c69656e204b696d65726160601b60648201526084016105c0565b680340aad21b3b700000811015610f5b5760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420616d6f756e74206f662024414d42455200000060448201526064016105c0565b336000908152601060205260409020544290620d2f00610f7b8284612209565b1015610fe05760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206d696e74206f6e6c79203120416c69656e204b696d65726160448201526d206576657279203130206461797360901b60648201526084016105c0565b6000610fea61161d565b9050610ff633826117b0565b601454604051632770a7eb60e21b8152336004820152680340aad21b3b70000060248201526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505033600090815260106020526040902094909455505050505050565b6000611085610a7d565b600c54610a889190612209565b600a546001600160a01b031633146110bc5760405162461bcd60e51b81526004016105c090612157565b6001600160a01b0381166111215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806111ae57506001600160e01b03198216635b5e139f60e01b145b806104b357506301ffc9a760e01b6001600160e01b03198316146104b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611202826108fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c0565b60006112bf836108fc565b9050806001600160a01b0316846001600160a01b031614806112fa5750836001600160a01b03166112ef8461054b565b6001600160a01b0316145b8061132a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611345826108fc565b6001600160a01b0316146113ad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c0565b6001600160a01b03821661140f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c0565b61141a8383836117ca565b6114256000826111cd565b6001600160a01b038316600090815260036020526040812080546001929061144e908490612209565b90915550506001600160a01b038216600090815260036020526040812080546001929061147c9084906121dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6114e8848484611332565b6114f484848484611882565b610b845760405162461bcd60e51b81526004016105c090612105565b6060601380546104c89061224c565b6060816115435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156d578061155781612287565b91506115669050600a836121f5565b9150611547565b60008167ffffffffffffffff8111156115885761158861230e565b6040519080825280601f01601f1916602001820160405280156115b2576020820181803683370190505b5090505b841561132a576115c7600183612209565b91506115d4600a866122a2565b6115df9060306121dd565b60f81b8183815181106115f4576115f46122f8565b60200101906001600160f81b031916908160001a905350611616600a866121f5565b94506115b6565b60008061162861107b565b116116705760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016105c0565b600061167a610a7d565b600c546116879190612209565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6116ee91906122a2565b6000818152600d60205260408120549192509061170c57508061171d565b506000818152600d60205260409020545b600d600061172c600186612209565b815260200190815260200160002054600014156117625761174e600184612209565b6000838152600d6020526040902055611792565b600d6000611771600186612209565b81526020808201929092526040908101600090812054858252600d90935220555b61179a61198f565b50600e546117a890826121dd565b935050505090565b6108f88282604051806020016040528060008152506119fd565b6001600160a01b0383166118255761182081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611848565b816001600160a01b0316836001600160a01b031614611848576118488382611a30565b6001600160a01b03821661185f576106f681611acd565b826001600160a01b0316826001600160a01b0316146106f6576106f68282611b7c565b60006001600160a01b0384163b1561198457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118c69033908990889088906004016120b5565b602060405180830381600087803b1580156118e057600080fd5b505af1925050508015611910575060408051601f3d908101601f1916820190925261190d91810190611fc2565b60015b61196a573d80801561193e576040519150601f19603f3d011682016040523d82523d6000602084013e611943565b606091505b5080516119625760405162461bcd60e51b81526004016105c090612105565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061132a565b506001949350505050565b60008061199a61107b565b116119e25760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016105c0565b60006119ed600b5490565b9050610a88600b80546001019055565b611a078383611bc0565b611a146000848484611882565b6106f65760405162461bcd60e51b81526004016105c090612105565b60006001611a3d84610973565b611a479190612209565b600083815260076020526040902054909150808214611a9a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611adf90600190612209565b60008381526009602052604081205460088054939450909284908110611b0757611b076122f8565b906000526020600020015490508060088381548110611b2857611b286122f8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6057611b606122e2565b6001900381819060005260206000200160009055905550505050565b6000611b8783610973565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c0565b6000818152600260205260409020546001600160a01b031615611c7b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c0565b611c87600083836117ca565b6001600160a01b0382166000908152600360205260408120805460019290611cb09084906121dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d1a9061224c565b90600052602060002090601f016020900481019282611d3c5760008555611d82565b82601f10611d5557805160ff1916838001178555611d82565b82800160010185558215611d82579182015b82811115611d82578251825591602001919060010190611d67565b50611d8e929150611d92565b5090565b5b80821115611d8e5760008155600101611d93565b600067ffffffffffffffff80841115611dc257611dc261230e565b604051601f8501601f19908116603f01168101908282118183101715611dea57611dea61230e565b81604052809350858152868686011115611e0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e3457600080fd5b919050565b600060208284031215611e4b57600080fd5b610caa82611e1d565b60008060408385031215611e6757600080fd5b611e7083611e1d565b9150611e7e60208401611e1d565b90509250929050565b600080600060608486031215611e9c57600080fd5b611ea584611e1d565b9250611eb360208501611e1d565b9150604084013590509250925092565b60008060008060808587031215611ed957600080fd5b611ee285611e1d565b9350611ef060208601611e1d565b925060408501359150606085013567ffffffffffffffff811115611f1357600080fd5b8501601f81018713611f2457600080fd5b611f3387823560208401611da7565b91505092959194509250565b60008060408385031215611f5257600080fd5b611f5b83611e1d565b915060208301358015158114611f7057600080fd5b809150509250929050565b60008060408385031215611f8e57600080fd5b611f9783611e1d565b946020939093013593505050565b600060208284031215611fb757600080fd5b8135610caa81612324565b600060208284031215611fd457600080fd5b8151610caa81612324565b600060208284031215611ff157600080fd5b813567ffffffffffffffff81111561200857600080fd5b8201601f8101841361201957600080fd5b61132a84823560208401611da7565b60006020828403121561203a57600080fd5b5035919050565b60006020828403121561205357600080fd5b5051919050565b60008151808452612072816020860160208601612220565b601f01601f19169290920160200192915050565b60008351612098818460208801612220565b8351908301906120ac818360208801612220565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120e89083018461205a565b9695505050505050565b602081526000610caa602083018461205a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121f0576121f06122b6565b500190565b600082612204576122046122cc565b500490565b60008282101561221b5761221b6122b6565b500390565b60005b8381101561223b578181015183820152602001612223565b83811115610b845750506000910152565b600181811c9082168061226057607f821691505b6020821081141561228157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229b5761229b6122b6565b5060010190565b6000826122b1576122b16122cc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461233a57600080fd5b5056fea26469706673582212204bfdc6ed7ea0df2162cfc3432b8faeb0956edf780450073c32e45990c5cc2b9464736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063c0bfda92116100ad578063e14ca3531161007c578063e14ca35314610414578063e95c32df1461041c578063e985e9c51461042f578063f26089bc1461046b578063f2fde38b1461047b57600080fd5b8063c0bfda92146103de578063c87b56dd146103f1578063ce8b702014610404578063d5abeb011461040c57600080fd5b80639f181b5e116100e95780639f181b5e146103a7578063a22cb465146103af578063b88d4fde146103c2578063bf615c40146103d557600080fd5b8063715018a61461035d57806387ac84fe146103655780638da5cb5b1461038e57806395d89b411461039f57600080fd5b8063299a15e9116101925780634f6ccce7116101615780634f6ccce71461031157806355f804b3146103245780636352211e1461033757806370a082311461034a57600080fd5b8063299a15e9146102cf5780632f745c59146102e357806335343a6c146102f657806342842e0e146102fe57600080fd5b806311ae30dc116101ce57806311ae30dc1461027d57806313e2c8da1461029457806318160ddd146102b457806323b872dd146102bc57600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611fa5565b61048e565b60405190151581526020015b60405180910390f35b6102306104b9565b60405161021f91906120f2565b61025061024b366004612028565b61054b565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611f7b565b6105e5565b005b61028660125481565b60405190815260200161021f565b6102866102a2366004611e39565b60106020526000908152604090205481565b600854610286565b61027b6102ca366004611e87565b6106fb565b60115461021390600160a01b900460ff1681565b6102866102f1366004611f7b565b61072c565b61027b6107c2565b61027b61030c366004611e87565b61080d565b61028661031f366004612028565b610828565b61027b610332366004611fdf565b6108bb565b610250610345366004612028565b6108fc565b610286610358366004611e39565b610973565b61027b6109fa565b610286610373366004611e39565b6001600160a01b031660009081526010602052604090205490565b600a546001600160a01b0316610250565b610230610a6e565b610286610a7d565b61027b6103bd366004611f3f565b610a8d565b61027b6103d0366004611ec3565b610b52565b61028661138881565b61027b6103ec366004611e39565b610b8a565b6102306103ff366004612028565b610bd6565b61027b610cb1565b600c54610286565b61028661107b565b601454610250906001600160a01b031681565b61021361043d366004611e54565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610286680340aad21b3b70000081565b61027b610489366004611e39565b611092565b60006001600160e01b0319821663780e9d6360e01b14806104b357506104b38261117d565b92915050565b6060600080546104c89061224c565b80601f01602080910402602001604051908101604052809291908181526020018280546104f49061224c565b80156105415780601f1061051657610100808354040283529160200191610541565b820191906000526020600020905b81548152906001019060200180831161052457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f0826108fc565b9050806001600160a01b0316836001600160a01b0316141561065e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c0565b336001600160a01b038216148061067a575061067a813361043d565b6106ec5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c0565b6106f683836111cd565b505050565b610705338261123b565b6107215760405162461bcd60e51b81526004016105c09061218c565b6106f6838383611332565b600061073783610973565b82106107995760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146107ec5760405162461bcd60e51b81526004016105c090612157565b6011805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6106f683838360405180602001604052806000815250610b52565b600061083360085490565b82106108965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105c0565b600882815481106108a9576108a96122f8565b90600052602060002001549050919050565b600a546001600160a01b031633146108e55760405162461bcd60e51b81526004016105c090612157565b80516108f8906013906020840190611d0e565b5050565b6000818152600260205260408120546001600160a01b0316806104b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c0565b60006001600160a01b0382166109de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610a245760405162461bcd60e51b81526004016105c090612157565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600180546104c89061224c565b6000610a88600b5490565b905090565b6001600160a01b038216331415610ae65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c0565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b5c338361123b565b610b785760405162461bcd60e51b81526004016105c09061218c565b610b84848484846114dd565b50505050565b600a546001600160a01b03163314610bb45760405162461bcd60e51b81526004016105c090612157565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546060906001600160a01b0316610c555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c0565b6000610c5f611510565b90506000815111610c7f5760405180602001604052806000815250610caa565b80610c898461151f565b604051602001610c9a929190612086565b6040516020818303038152906040525b9392505050565b601154600160a01b900460ff16610d255760405162461bcd60e51b815260206004820152603260248201527f414b2050726f746f636f6c206d7573742062652061637469766520746f206d696044820152716e7420616e20416c69656e204b696d65726160701b60648201526084016105c0565b60125460085410610d965760405162461bcd60e51b815260206004820152603560248201527f507572636861736520776f756c642065786365656420746865206d617820737560448201527470706c79206f6620416c69656e204b696d6572617360581b60648201526084016105c0565b600f546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610dda57600080fd5b505afa158015610dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e129190612041565b6014546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610e5b57600080fd5b505afa158015610e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e939190612041565b905060008211610f025760405162461bcd60e51b815260206004820152603460248201527f4d757374206f776e206174206c65617374206f6e6520447261474f4e20746f206044820152736d696e7420616e20416c69656e204b696d65726160601b60648201526084016105c0565b680340aad21b3b700000811015610f5b5760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420616d6f756e74206f662024414d42455200000060448201526064016105c0565b336000908152601060205260409020544290620d2f00610f7b8284612209565b1015610fe05760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206d696e74206f6e6c79203120416c69656e204b696d65726160448201526d206576657279203130206461797360901b60648201526084016105c0565b6000610fea61161d565b9050610ff633826117b0565b601454604051632770a7eb60e21b8152336004820152680340aad21b3b70000060248201526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505033600090815260106020526040902094909455505050505050565b6000611085610a7d565b600c54610a889190612209565b600a546001600160a01b031633146110bc5760405162461bcd60e51b81526004016105c090612157565b6001600160a01b0381166111215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806111ae57506001600160e01b03198216635b5e139f60e01b145b806104b357506301ffc9a760e01b6001600160e01b03198316146104b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611202826108fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c0565b60006112bf836108fc565b9050806001600160a01b0316846001600160a01b031614806112fa5750836001600160a01b03166112ef8461054b565b6001600160a01b0316145b8061132a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611345826108fc565b6001600160a01b0316146113ad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c0565b6001600160a01b03821661140f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c0565b61141a8383836117ca565b6114256000826111cd565b6001600160a01b038316600090815260036020526040812080546001929061144e908490612209565b90915550506001600160a01b038216600090815260036020526040812080546001929061147c9084906121dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6114e8848484611332565b6114f484848484611882565b610b845760405162461bcd60e51b81526004016105c090612105565b6060601380546104c89061224c565b6060816115435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156d578061155781612287565b91506115669050600a836121f5565b9150611547565b60008167ffffffffffffffff8111156115885761158861230e565b6040519080825280601f01601f1916602001820160405280156115b2576020820181803683370190505b5090505b841561132a576115c7600183612209565b91506115d4600a866122a2565b6115df9060306121dd565b60f81b8183815181106115f4576115f46122f8565b60200101906001600160f81b031916908160001a905350611616600a866121f5565b94506115b6565b60008061162861107b565b116116705760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016105c0565b600061167a610a7d565b600c546116879190612209565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6116ee91906122a2565b6000818152600d60205260408120549192509061170c57508061171d565b506000818152600d60205260409020545b600d600061172c600186612209565b815260200190815260200160002054600014156117625761174e600184612209565b6000838152600d6020526040902055611792565b600d6000611771600186612209565b81526020808201929092526040908101600090812054858252600d90935220555b61179a61198f565b50600e546117a890826121dd565b935050505090565b6108f88282604051806020016040528060008152506119fd565b6001600160a01b0383166118255761182081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611848565b816001600160a01b0316836001600160a01b031614611848576118488382611a30565b6001600160a01b03821661185f576106f681611acd565b826001600160a01b0316826001600160a01b0316146106f6576106f68282611b7c565b60006001600160a01b0384163b1561198457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118c69033908990889088906004016120b5565b602060405180830381600087803b1580156118e057600080fd5b505af1925050508015611910575060408051601f3d908101601f1916820190925261190d91810190611fc2565b60015b61196a573d80801561193e576040519150601f19603f3d011682016040523d82523d6000602084013e611943565b606091505b5080516119625760405162461bcd60e51b81526004016105c090612105565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061132a565b506001949350505050565b60008061199a61107b565b116119e25760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016105c0565b60006119ed600b5490565b9050610a88600b80546001019055565b611a078383611bc0565b611a146000848484611882565b6106f65760405162461bcd60e51b81526004016105c090612105565b60006001611a3d84610973565b611a479190612209565b600083815260076020526040902054909150808214611a9a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611adf90600190612209565b60008381526009602052604081205460088054939450909284908110611b0757611b076122f8565b906000526020600020015490508060088381548110611b2857611b286122f8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6057611b606122e2565b6001900381819060005260206000200160009055905550505050565b6000611b8783610973565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c0565b6000818152600260205260409020546001600160a01b031615611c7b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c0565b611c87600083836117ca565b6001600160a01b0382166000908152600360205260408120805460019290611cb09084906121dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d1a9061224c565b90600052602060002090601f016020900481019282611d3c5760008555611d82565b82601f10611d5557805160ff1916838001178555611d82565b82800160010185558215611d82579182015b82811115611d82578251825591602001919060010190611d67565b50611d8e929150611d92565b5090565b5b80821115611d8e5760008155600101611d93565b600067ffffffffffffffff80841115611dc257611dc261230e565b604051601f8501601f19908116603f01168101908282118183101715611dea57611dea61230e565b81604052809350858152868686011115611e0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e3457600080fd5b919050565b600060208284031215611e4b57600080fd5b610caa82611e1d565b60008060408385031215611e6757600080fd5b611e7083611e1d565b9150611e7e60208401611e1d565b90509250929050565b600080600060608486031215611e9c57600080fd5b611ea584611e1d565b9250611eb360208501611e1d565b9150604084013590509250925092565b60008060008060808587031215611ed957600080fd5b611ee285611e1d565b9350611ef060208601611e1d565b925060408501359150606085013567ffffffffffffffff811115611f1357600080fd5b8501601f81018713611f2457600080fd5b611f3387823560208401611da7565b91505092959194509250565b60008060408385031215611f5257600080fd5b611f5b83611e1d565b915060208301358015158114611f7057600080fd5b809150509250929050565b60008060408385031215611f8e57600080fd5b611f9783611e1d565b946020939093013593505050565b600060208284031215611fb757600080fd5b8135610caa81612324565b600060208284031215611fd457600080fd5b8151610caa81612324565b600060208284031215611ff157600080fd5b813567ffffffffffffffff81111561200857600080fd5b8201601f8101841361201957600080fd5b61132a84823560208401611da7565b60006020828403121561203a57600080fd5b5035919050565b60006020828403121561205357600080fd5b5051919050565b60008151808452612072816020860160208601612220565b601f01601f19169290920160200192915050565b60008351612098818460208801612220565b8351908301906120ac818360208801612220565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120e89083018461205a565b9695505050505050565b602081526000610caa602083018461205a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121f0576121f06122b6565b500190565b600082612204576122046122cc565b500490565b60008282101561221b5761221b6122b6565b500390565b60005b8381101561223b578181015183820152602001612223565b83811115610b845750506000910152565b600181811c9082168061226057607f821691505b6020821081141561228157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229b5761229b6122b6565b5060010190565b6000826122b1576122b16122cc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461233a57600080fd5b5056fea26469706673582212204bfdc6ed7ea0df2162cfc3432b8faeb0956edf780450073c32e45990c5cc2b9464736f6c63430008060033

Deployed Bytecode Sourcemap

48895:2085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39914:237;;;;;;:::i;:::-;;:::i;:::-;;;6665:14:1;;6658:22;6640:41;;6628:2;6613:18;39914:237:0;;;;;;;;27119:100;;;:::i;:::-;;;;;;;:::i;28579:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5684:32:1;;;5666:51;;5654:2;5639:18;28579:221:0;5621:102:1;28116:397:0;;;;;;:::i;:::-;;:::i;:::-;;49296:25;;;;;;;;;16884::1;;;16872:2;16857:18;49296:25:0;16839:76:1;49007:45:0;;;;;;:::i;:::-;;;;;;;;;;;;;;40567:113;40655:10;:17;40567:113;;29469:305;;;;;;:::i;:::-;;:::i;49260:31::-;;;;;-1:-1:-1;;;49260:31:0;;;;;;40235:256;;;;;;:::i;:::-;;:::i;49860:80::-;;;:::i;29845:151::-;;;;;;:::i;:::-;;:::i;40757:233::-;;;;;;:::i;:::-;;:::i;49772:82::-;;;;;;:::i;:::-;;:::i;26813:239::-;;;;;;:::i;:::-;;:::i;26543:208::-;;;;;;:::i;:::-;;:::i;47786:148::-;;;:::i;50843:132::-;;;;;;:::i;:::-;-1:-1:-1;;;;;50934:16:0;50902:7;50934:16;;;:10;:16;;;;;;;50843:132;47135:87;47208:6;;-1:-1:-1;;;;;47208:6:0;47135:87;;27288:104;;;:::i;20614:99::-;;;:::i;28872:295::-;;;;;;:::i;:::-;;:::i;30067:285::-;;;;;;:::i;:::-;;:::i;49059:39::-;;49094:4;49059:39;;49560:102;;;;;;:::i;:::-;;:::i;27463:360::-;;;;;;:::i;:::-;;:::i;49989:848::-;;;:::i;20436:87::-;20505:10;;20436:87;;20819:113;;;:::i;49355:28::-;;;;;-1:-1:-1;;;;;49355:28:0;;;29238:164;;;;;;:::i;:::-;-1:-1:-1;;;;;29359:25:0;;;29335:4;29359:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29238:164;49103:58;;49141:20;49103:58;;48089:244;;;;;;:::i;:::-;;:::i;39914:237::-;40016:4;-1:-1:-1;;;;;;40040:50:0;;-1:-1:-1;;;40040:50:0;;:103;;;40107:36;40131:11;40107:23;:36::i;:::-;40033:110;39914:237;-1:-1:-1;;39914:237:0:o;27119:100::-;27173:13;27206:5;27199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27119:100;:::o;28579:221::-;28655:7;31908:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31908:16:0;28675:73;;;;-1:-1:-1;;;28675:73:0;;14107:2:1;28675:73:0;;;14089:21:1;14146:2;14126:18;;;14119:30;14185:34;14165:18;;;14158:62;-1:-1:-1;;;14236:18:1;;;14229:42;14288:19;;28675:73:0;;;;;;;;;-1:-1:-1;28768:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28768:24:0;;28579:221::o;28116:397::-;28197:13;28213:23;28228:7;28213:14;:23::i;:::-;28197:39;;28261:5;-1:-1:-1;;;;;28255:11:0;:2;-1:-1:-1;;;;;28255:11:0;;;28247:57;;;;-1:-1:-1;;;28247:57:0;;15707:2:1;28247:57:0;;;15689:21:1;15746:2;15726:18;;;15719:30;15785:34;15765:18;;;15758:62;-1:-1:-1;;;15836:18:1;;;15829:31;15877:19;;28247:57:0;15679:223:1;28247:57:0;15965:10;-1:-1:-1;;;;;28325:21:0;;;;:62;;-1:-1:-1;28350:37:0;28367:5;15965:10;29238:164;:::i;28350:37::-;28317:154;;;;-1:-1:-1;;;28317:154:0;;11657:2:1;28317:154:0;;;11639:21:1;11696:2;11676:18;;;11669:30;11735:34;11715:18;;;11708:62;11806:26;11786:18;;;11779:54;11850:19;;28317:154:0;11629:246:1;28317:154:0;28484:21;28493:2;28497:7;28484:8;:21::i;:::-;28186:327;28116:397;;:::o;29469:305::-;29630:41;15965:10;29663:7;29630:18;:41::i;:::-;29622:103;;;;-1:-1:-1;;;29622:103:0;;;;;;;:::i;:::-;29738:28;29748:4;29754:2;29758:7;29738:9;:28::i;40235:256::-;40332:7;40368:23;40385:5;40368:16;:23::i;:::-;40360:5;:31;40352:87;;;;-1:-1:-1;;;40352:87:0;;7345:2:1;40352:87:0;;;7327:21:1;7384:2;7364:18;;;7357:30;7423:34;7403:18;;;7396:62;-1:-1:-1;;;7474:18:1;;;7467:41;7525:19;;40352:87:0;7317:233:1;40352:87:0;-1:-1:-1;;;;;;40457:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40235:256::o;49860:80::-;47208:6;;-1:-1:-1;;;;;47208:6:0;15965:10;47355:23;47347:68;;;;-1:-1:-1;;;47347:68:0;;;;;;;:::i;:::-;49923:11:::1;::::0;;-1:-1:-1;;;;49908:26:0;::::1;-1:-1:-1::0;;;49923:11:0;;;::::1;;;49922:12;49908:26:::0;;::::1;;::::0;;49860:80::o;29845:151::-;29949:39;29966:4;29972:2;29976:7;29949:39;;;;;;;;;;;;:16;:39::i;40757:233::-;40832:7;40868:30;40655:10;:17;;40567:113;40868:30;40860:5;:38;40852:95;;;;-1:-1:-1;;;40852:95:0;;16527:2:1;40852:95:0;;;16509:21:1;16566:2;16546:18;;;16539:30;16605:34;16585:18;;;16578:62;-1:-1:-1;;;16656:18:1;;;16649:42;16708:19;;40852:95:0;16499:234:1;40852:95:0;40965:10;40976:5;40965:17;;;;;;;;:::i;:::-;;;;;;;;;40958:24;;40757:233;;;:::o;49772:82::-;47208:6;;-1:-1:-1;;;;;47208:6:0;15965:10;47355:23;47347:68;;;;-1:-1:-1;;;47347:68:0;;;;;;;:::i;:::-;49835:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49772:82:::0;:::o;26813:239::-;26885:7;26921:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26921:16:0;26956:19;26948:73;;;;-1:-1:-1;;;26948:73:0;;12493:2:1;26948:73:0;;;12475:21:1;12532:2;12512:18;;;12505:30;12571:34;12551:18;;;12544:62;-1:-1:-1;;;12622:18:1;;;12615:39;12671:19;;26948:73:0;12465:231:1;26543:208:0;26615:7;-1:-1:-1;;;;;26643:19:0;;26635:74;;;;-1:-1:-1;;;26635:74:0;;12082:2:1;26635:74:0;;;12064:21:1;12121:2;12101:18;;;12094:30;12160:34;12140:18;;;12133:62;-1:-1:-1;;;12211:18:1;;;12204:40;12261:19;;26635:74:0;12054:232:1;26635:74:0;-1:-1:-1;;;;;;26727:16:0;;;;;:9;:16;;;;;;;26543:208::o;47786:148::-;47208:6;;-1:-1:-1;;;;;47208:6:0;15965:10;47355:23;47347:68;;;;-1:-1:-1;;;47347:68:0;;;;;;;:::i;:::-;47877:6:::1;::::0;47856:40:::1;::::0;47893:1:::1;::::0;-1:-1:-1;;;;;47877:6:0::1;::::0;47856:40:::1;::::0;47893:1;;47856:40:::1;47907:6;:19:::0;;-1:-1:-1;;;;;;47907:19:0::1;::::0;;47786:148::o;27288:104::-;27344:13;27377:7;27370:14;;;;;:::i;20614:99::-;20657:7;20684:21;:11;19179:14;;19087:114;20684:21;20677:28;;20614:99;:::o;28872:295::-;-1:-1:-1;;;;;28975:24:0;;15965:10;28975:24;;28967:62;;;;-1:-1:-1;;;28967:62:0;;9760:2:1;28967:62:0;;;9742:21:1;9799:2;9779:18;;;9772:30;9838:27;9818:18;;;9811:55;9883:18;;28967:62:0;9732:175:1;28967:62:0;15965:10;29042:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29042:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29042:53:0;;;;;;;;;;29111:48;;6640:41:1;;;29042:42:0;;15965:10;29111:48;;6613:18:1;29111:48:0;;;;;;;28872:295;;:::o;30067:285::-;30199:41;15965:10;30232:7;30199:18;:41::i;:::-;30191:103;;;;-1:-1:-1;;;30191:103:0;;;;;;;:::i;:::-;30305:39;30319:4;30325:2;30329:7;30338:5;30305:13;:39::i;:::-;30067:285;;;;:::o;49560:102::-;47208:6;;-1:-1:-1;;;;;47208:6:0;15965:10;47355:23;47347:68;;;;-1:-1:-1;;;47347:68:0;;;;;;;:::i;:::-;49625:10:::1;:31:::0;;-1:-1:-1;;;;;;49625:31:0::1;-1:-1:-1::0;;;;;49625:31:0;;;::::1;::::0;;;::::1;::::0;;49560:102::o;27463:360::-;31884:4;31908:16;;;:7;:16;;;;;;27536:13;;-1:-1:-1;;;;;31908:16:0;27562:76;;;;-1:-1:-1;;;27562:76:0;;15291:2:1;27562:76:0;;;15273:21:1;15330:2;15310:18;;;15303:30;15369:34;15349:18;;;15342:62;-1:-1:-1;;;15420:18:1;;;15413:45;15475:19;;27562:76:0;15263:237:1;27562:76:0;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27727:1;27709:7;27703:21;:25;:112;;;;;;;;;;;;;;;;;27768:7;27777:18;:7;:16;:18::i;:::-;27751:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27703:112;27696:119;27463:360;-1:-1:-1;;;27463:360:0:o;49989:848::-;50033:11;;-1:-1:-1;;;50033:11:0;;;;50025:74;;;;-1:-1:-1;;;50025:74:0;;10114:2:1;50025:74:0;;;10096:21:1;10153:2;10133:18;;;10126:30;10192:34;10172:18;;;10165:62;-1:-1:-1;;;10243:18:1;;;10236:48;10301:19;;50025:74:0;10086:240:1;50025:74:0;50130:10;;40655;:17;50114:26;50106:92;;;;-1:-1:-1;;;50106:92:0;;12903:2:1;50106:92:0;;;12885:21:1;12942:2;12922:18;;;12915:30;12981:34;12961:18;;;12954:62;-1:-1:-1;;;13032:18:1;;;13025:51;13093:19;;50106:92:0;12875:243:1;50106:92:0;50227:7;;:29;;-1:-1:-1;;;50227:29:0;;50245:10;50227:29;;;5666:51:1;50205:19:0;;-1:-1:-1;;;;;50227:7:0;;:17;;5639:18:1;;50227:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50288:10;;:32;;-1:-1:-1;;;50288:32:0;;50309:10;50288:32;;;5666:51:1;50205::0;;-1:-1:-1;50263:22:0;;-1:-1:-1;;;;;50288:10:0;;;;:20;;5639:18:1;;50288:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50263:57;;50352:1;50335:14;:18;50327:83;;;;-1:-1:-1;;;50327:83:0;;13686:2:1;50327:83:0;;;13668:21:1;13725:2;13705:18;;;13698:30;13764:34;13744:18;;;13737:62;-1:-1:-1;;;13815:18:1;;;13808:50;13875:19;;50327:83:0;13658:242:1;50327:83:0;49141:20;50425:17;:32;;50417:74;;;;-1:-1:-1;;;50417:74:0;;11299:2:1;50417:74:0;;;11281:21:1;11338:2;11318:18;;;11311:30;11377:31;11357:18;;;11350:59;11426:18;;50417:74:0;11271:179:1;50417:74:0;50566:10;50498:12;50555:22;;;:10;:22;;;;;;50513:15;;50612:6;50592:16;50555:22;50513:15;50592:16;:::i;:::-;:26;;50584:85;;;;-1:-1:-1;;;50584:85:0;;9345:2:1;50584:85:0;;;9327:21:1;9384:2;9364:18;;;9357:30;9423:34;9403:18;;;9396:62;-1:-1:-1;;;9474:18:1;;;9467:44;9528:19;;50584:85:0;9317:236:1;50584:85:0;50678:17;50698:11;:9;:11::i;:::-;50678:31;;50716:32;50726:10;50738:9;50716;:32::i;:::-;50755:10;;:40;;-1:-1:-1;;;50755:40:0;;50771:10;50755:40;;;6395:51:1;49141:20:0;6462:18:1;;;6455:34;-1:-1:-1;;;;;50755:10:0;;;;:15;;6368:18:1;;50755:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50813:10:0;50802:22;;;;:10;:22;;;;;:29;;;;-1:-1:-1;;;;;;49989:848:0:o;20819:113::-;20871:7;20912:12;:10;:12::i;:::-;20505:10;;20898:26;;;;:::i;48089:244::-;47208:6;;-1:-1:-1;;;;;47208:6:0;15965:10;47355:23;47347:68;;;;-1:-1:-1;;;47347:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48178:22:0;::::1;48170:73;;;::::0;-1:-1:-1;;;48170:73:0;;8176:2:1;48170:73:0::1;::::0;::::1;8158:21:1::0;8215:2;8195:18;;;8188:30;8254:34;8234:18;;;8227:62;-1:-1:-1;;;8305:18:1;;;8298:36;8351:19;;48170:73:0::1;8148:228:1::0;48170:73:0::1;48280:6;::::0;48259:38:::1;::::0;-1:-1:-1;;;;;48259:38:0;;::::1;::::0;48280:6:::1;::::0;48259:38:::1;::::0;48280:6:::1;::::0;48259:38:::1;48308:6;:17:::0;;-1:-1:-1;;;;;;48308:17:0::1;-1:-1:-1::0;;;;;48308:17:0;;;::::1;::::0;;;::::1;::::0;;48089:244::o;26187:292::-;26289:4;-1:-1:-1;;;;;;26313:40:0;;-1:-1:-1;;;26313:40:0;;:105;;-1:-1:-1;;;;;;;26370:48:0;;-1:-1:-1;;;26370:48:0;26313:105;:158;;;-1:-1:-1;;;;;;;;;;24806:40:0;;;26435:36;24697:157;35696:174;35771:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35771:29:0;-1:-1:-1;;;;;35771:29:0;;;;;;;;:24;;35825:23;35771:24;35825:14;:23::i;:::-;-1:-1:-1;;;;;35816:46:0;;;;;;;;;;;35696:174;;:::o;32113:348::-;32206:4;31908:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31908:16:0;32223:73;;;;-1:-1:-1;;;32223:73:0;;10886:2:1;32223:73:0;;;10868:21:1;10925:2;10905:18;;;10898:30;10964:34;10944:18;;;10937:62;-1:-1:-1;;;11015:18:1;;;11008:42;11067:19;;32223:73:0;10858:234:1;32223:73:0;32307:13;32323:23;32338:7;32323:14;:23::i;:::-;32307:39;;32376:5;-1:-1:-1;;;;;32365:16:0;:7;-1:-1:-1;;;;;32365:16:0;;:51;;;;32409:7;-1:-1:-1;;;;;32385:31:0;:20;32397:7;32385:11;:20::i;:::-;-1:-1:-1;;;;;32385:31:0;;32365:51;:87;;;-1:-1:-1;;;;;;29359:25:0;;;29335:4;29359:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32420:32;32357:96;32113:348;-1:-1:-1;;;;32113:348:0:o;35034:544::-;35159:4;-1:-1:-1;;;;;35132:31:0;:23;35147:7;35132:14;:23::i;:::-;-1:-1:-1;;;;;35132:31:0;;35124:85;;;;-1:-1:-1;;;35124:85:0;;14881:2:1;35124:85:0;;;14863:21:1;14920:2;14900:18;;;14893:30;14959:34;14939:18;;;14932:62;-1:-1:-1;;;15010:18:1;;;15003:39;15059:19;;35124:85:0;14853:231:1;35124:85:0;-1:-1:-1;;;;;35228:16:0;;35220:65;;;;-1:-1:-1;;;35220:65:0;;8940:2:1;35220:65:0;;;8922:21:1;8979:2;8959:18;;;8952:30;9018:34;8998:18;;;8991:62;-1:-1:-1;;;9069:18:1;;;9062:34;9113:19;;35220:65:0;8912:226:1;35220:65:0;35298:39;35319:4;35325:2;35329:7;35298:20;:39::i;:::-;35402:29;35419:1;35423:7;35402:8;:29::i;:::-;-1:-1:-1;;;;;35444:15:0;;;;;;:9;:15;;;;;:20;;35463:1;;35444:15;:20;;35463:1;;35444:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35475:13:0;;;;;;:9;:13;;;;;:18;;35492:1;;35475:13;:18;;35492:1;;35475:18;:::i;:::-;;;;-1:-1:-1;;35504:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35504:21:0;-1:-1:-1;;;;;35504:21:0;;;;;;;;;35543:27;;35504:16;;35543:27;;;;;;;35034:544;;;:::o;31234:272::-;31348:28;31358:4;31364:2;31368:7;31348:9;:28::i;:::-;31395:48;31418:4;31424:2;31428:7;31437:5;31395:22;:48::i;:::-;31387:111;;;;-1:-1:-1;;;31387:111:0;;;;;;;:::i;49670:94::-;49722:13;49751:7;49744:14;;;;;:::i;16540:723::-;16596:13;16817:10;16813:53;;-1:-1:-1;;16844:10:0;;;;;;;;;;;;-1:-1:-1;;;16844:10:0;;;;;16540:723::o;16813:53::-;16891:5;16876:12;16932:78;16939:9;;16932:78;;16965:8;;;;:::i;:::-;;-1:-1:-1;16988:10:0;;-1:-1:-1;16996:2:0;16988:10;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17042:17:0;;17020:39;;17070:154;17077:10;;17070:154;;17104:11;17114:1;17104:11;;:::i;:::-;;-1:-1:-1;17173:10:0;17181:2;17173:5;:10;:::i;:::-;17160:24;;:2;:24;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17130:56:0;;;;;;;;-1:-1:-1;17201:11:0;17210:2;17201:11;;:::i;:::-;;;17070:154;;22600:1262;22667:7;21376:1;21352:21;:19;:21::i;:::-;:25;21344:62;;;;-1:-1:-1;;;21344:62:0;;10533:2:1;21344:62:0;;;10515:21:1;10572:2;10552:18;;;10545:30;-1:-1:-1;;;10591:18:1;;;10584:54;10655:18;;21344:62:0;10505:174:1;21344:62:0;22687:16:::1;22720:12;:10;:12::i;:::-;20505:10:::0;;22706:26:::1;;;;:::i;:::-;22792:195;::::0;-1:-1:-1;;22827:10:0::1;4821:2:1::0;4817:15;;;4813:24;;22792:195:0::1;::::0;::::1;4801:37:1::0;22856:14:0::1;4872:15:1::0;;4868:24;4854:12;;;4847:46;22889:16:0::1;4909:12:1::0;;;4902:28;22924:14:0::1;4946:12:1::0;;;4939:28;22957:15:0::1;4983:13:1::0;;;4976:29;22687:45:0;;-1:-1:-1;22743:14:0::1;::::0;22687:45;;5021:13:1;;22792:195:0::1;;;;;;;;;;;;22768:230;;;;;;22760:239;;:250;;;;:::i;:::-;23023:13;23055:19:::0;;;:11:::1;:19;::::0;;;;;22743:267;;-1:-1:-1;23023:13:0;23051:304:::1;;-1:-1:-1::0;23200:6:0;23051:304:::1;;;-1:-1:-1::0;23324:19:0::1;::::0;;;:11:::1;:19;::::0;;;;;23051:304:::1;23432:11;:25;23444:12;23455:1;23444:8:::0;:12:::1;:::i;:::-;23432:25;;;;;;;;;;;;23461:1;23432:30;23428:331;;;23566:12;23577:1;23566:8:::0;:12:::1;:::i;:::-;23544:19;::::0;;;:11:::1;:19;::::0;;;;:34;23428:331:::1;;;23722:11;:25;23734:12;23745:1;23734:8:::0;:12:::1;:::i;:::-;23722:25:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;23722:25:0;;;;23700:19;;;:11:::1;:19:::0;;;;:47;23428:331:::1;23800:17;:15;:17::i;:::-;-1:-1:-1::0;23845:9:0::1;::::0;23837:17:::1;::::0;:5;:17:::1;:::i;:::-;23830:24;;;;;22600:1262:::0;:::o;32803:110::-;32879:26;32889:2;32893:7;32879:26;;;;;;;;;;;;:9;:26::i;41603:555::-;-1:-1:-1;;;;;41775:18:0;;41771:187;;41810:40;41842:7;42985:10;:17;;42958:24;;;;:15;:24;;;;;:44;;;43013:24;;;;;;;;;;;;42881:164;41810:40;41771:187;;;41880:2;-1:-1:-1;;;;;41872:10:0;:4;-1:-1:-1;;;;;41872:10:0;;41868:90;;41899:47;41932:4;41938:7;41899:32;:47::i;:::-;-1:-1:-1;;;;;41972:16:0;;41968:183;;42005:45;42042:7;42005:36;:45::i;41968:183::-;42078:4;-1:-1:-1;;;;;42072:10:0;:2;-1:-1:-1;;;;;42072:10:0;;42068:83;;42099:40;42127:2;42131:7;42099:27;:40::i;36435:843::-;36556:4;-1:-1:-1;;;;;36582:13:0;;8369:20;8408:8;36578:693;;36618:72;;-1:-1:-1;;;36618:72:0;;-1:-1:-1;;;;;36618:36:0;;;;;:72;;15965:10;;36669:4;;36675:7;;36684:5;;36618:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36618:72:0;;;;;;;;-1:-1:-1;;36618:72:0;;;;;;;;;;;;:::i;:::-;;;36614:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36864:13:0;;36860:341;;36907:60;;-1:-1:-1;;;36907:60:0;;;;;;;:::i;36860:341::-;37151:6;37145:13;37136:6;37132:2;37128:15;37121:38;36614:602;-1:-1:-1;;;;;;36741:55:0;-1:-1:-1;;;36741:55:0;;-1:-1:-1;36734:62:0;;36578:693;-1:-1:-1;37255:4:0;36435:843;;;;;;:::o;21042:192::-;21108:7;21376:1;21352:21;:19;:21::i;:::-;:25;21344:62;;;;-1:-1:-1;;;21344:62:0;;10533:2:1;21344:62:0;;;10515:21:1;10572:2;10552:18;;;10545:30;-1:-1:-1;;;10591:18:1;;;10584:54;10655:18;;21344:62:0;10505:174:1;21344:62:0;21128:13:::1;21144:21;:11;19179:14:::0;;19087:114;21144:21:::1;21128:37;;21178:23;:11;19298:19:::0;;19316:1;19298:19;;;19209:127;33140:250;33236:18;33242:2;33246:7;33236:5;:18::i;:::-;33273:54;33304:1;33308:2;33312:7;33321:5;33273:22;:54::i;:::-;33265:117;;;;-1:-1:-1;;;33265:117:0;;;;;;;:::i;43672:988::-;43938:22;43988:1;43963:22;43980:4;43963:16;:22::i;:::-;:26;;;;:::i;:::-;44000:18;44021:26;;;:17;:26;;;;;;43938:51;;-1:-1:-1;44154:28:0;;;44150:328;;-1:-1:-1;;;;;44221:18:0;;44199:19;44221:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44272:30;;;;;;:44;;;44389:30;;:17;:30;;;;;:43;;;44150:328;-1:-1:-1;44574:26:0;;;;:17;:26;;;;;;;;44567:33;;;-1:-1:-1;;;;;44618:18:0;;;;;:12;:18;;;;;:34;;;;;;;44611:41;43672:988::o;44955:1079::-;45233:10;:17;45208:22;;45233:21;;45253:1;;45233:21;:::i;:::-;45265:18;45286:24;;;:15;:24;;;;;;45659:10;:26;;45208:46;;-1:-1:-1;45286:24:0;;45208:46;;45659:26;;;;;;:::i;:::-;;;;;;;;;45637:48;;45723:11;45698:10;45709;45698:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45803:28;;;:15;:28;;;;;;;:41;;;45975:24;;;;;45968:31;46010:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45026:1008;;;44955:1079;:::o;42459:221::-;42544:14;42561:20;42578:2;42561:16;:20::i;:::-;-1:-1:-1;;;;;42592:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42637:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42459:221:0:o;33726:382::-;-1:-1:-1;;;;;33806:16:0;;33798:61;;;;-1:-1:-1;;;33798:61:0;;13325:2:1;33798:61:0;;;13307:21:1;;;13344:18;;;13337:30;13403:34;13383:18;;;13376:62;13455:18;;33798:61:0;13297:182:1;33798:61:0;31884:4;31908:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31908:16:0;:30;33870:58;;;;-1:-1:-1;;;33870:58:0;;8583:2:1;33870:58:0;;;8565:21:1;8622:2;8602:18;;;8595:30;8661;8641:18;;;8634:58;8709:18;;33870:58:0;8555:178:1;33870:58:0;33941:45;33970:1;33974:2;33978:7;33941:20;:45::i;:::-;-1:-1:-1;;;;;33999:13:0;;;;;;:9;:13;;;;;:18;;34016:1;;33999:13;:18;;34016:1;;33999:18;:::i;:::-;;;;-1:-1:-1;;34028:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34028:21:0;-1:-1:-1;;;;;34028:21:0;;;;;;;;34067:33;;34028:16;;;34067:33;;34028:16;;34067:33;33726:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:184::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4182:1;4179;4172:12;4134:2;-1:-1:-1;4205:16:1;;4124:103;-1:-1:-1;4124:103:1:o;4232:257::-;4273:3;4311:5;4305:12;4338:6;4333:3;4326:19;4354:63;4410:6;4403:4;4398:3;4394:14;4387:4;4380:5;4376:16;4354:63;:::i;:::-;4471:2;4450:15;-1:-1:-1;;4446:29:1;4437:39;;;;4478:4;4433:50;;4281:208;-1:-1:-1;;4281:208:1:o;5045:470::-;5224:3;5262:6;5256:13;5278:53;5324:6;5319:3;5312:4;5304:6;5300:17;5278:53;:::i;:::-;5394:13;;5353:16;;;;5416:57;5394:13;5353:16;5450:4;5438:17;;5416:57;:::i;:::-;5489:20;;5232:283;-1:-1:-1;;;;5232:283:1:o;5728:488::-;-1:-1:-1;;;;;5997:15:1;;;5979:34;;6049:15;;6044:2;6029:18;;6022:43;6096:2;6081:18;;6074:34;;;6144:3;6139:2;6124:18;;6117:31;;;5922:4;;6165:45;;6190:19;;6182:6;6165:45;:::i;:::-;6157:53;5931:285;-1:-1:-1;;;;;;5931:285:1:o;6919:219::-;7068:2;7057:9;7050:21;7031:4;7088:44;7128:2;7117:9;7113:18;7105:6;7088:44;:::i;7555:414::-;7757:2;7739:21;;;7796:2;7776:18;;;7769:30;7835:34;7830:2;7815:18;;7808:62;-1:-1:-1;;;7901:2:1;7886:18;;7879:48;7959:3;7944:19;;7729:240::o;14318:356::-;14520:2;14502:21;;;14539:18;;;14532:30;14598:34;14593:2;14578:18;;14571:62;14665:2;14650:18;;14492:182::o;15907:413::-;16109:2;16091:21;;;16148:2;16128:18;;;16121:30;16187:34;16182:2;16167:18;;16160:62;-1:-1:-1;;;16253:2:1;16238:18;;16231:47;16310:3;16295:19;;16081:239::o;16920:128::-;16960:3;16991:1;16987:6;16984:1;16981:13;16978:2;;;16997:18;;:::i;:::-;-1:-1:-1;17033:9:1;;16968:80::o;17053:120::-;17093:1;17119;17109:2;;17124:18;;:::i;:::-;-1:-1:-1;17158:9:1;;17099:74::o;17178:125::-;17218:4;17246:1;17243;17240:8;17237:2;;;17251:18;;:::i;:::-;-1:-1:-1;17288:9:1;;17227:76::o;17308:258::-;17380:1;17390:113;17404:6;17401:1;17398:13;17390:113;;;17480:11;;;17474:18;17461:11;;;17454:39;17426:2;17419:10;17390:113;;;17521:6;17518:1;17515:13;17512:2;;;-1:-1:-1;;17556:1:1;17538:16;;17531:27;17361:205::o;17571:380::-;17650:1;17646:12;;;;17693;;;17714:2;;17768:4;17760:6;17756:17;17746:27;;17714:2;17821;17813:6;17810:14;17790:18;17787:38;17784:2;;;17867:10;17862:3;17858:20;17855:1;17848:31;17902:4;17899:1;17892:15;17930:4;17927:1;17920:15;17784:2;;17626:325;;;:::o;17956:135::-;17995:3;-1:-1:-1;;18016:17:1;;18013:2;;;18036:18;;:::i;:::-;-1:-1:-1;18083:1:1;18072:13;;18003:88::o;18096:112::-;18128:1;18154;18144:2;;18159:18;;:::i;:::-;-1:-1:-1;18193:9:1;;18134:74::o;18213:127::-;18274:10;18269:3;18265:20;18262:1;18255:31;18305:4;18302:1;18295:15;18329:4;18326:1;18319:15;18345:127;18406:10;18401:3;18397:20;18394:1;18387:31;18437:4;18434:1;18427:15;18461:4;18458:1;18451:15;18477:127;18538:10;18533:3;18529:20;18526:1;18519:31;18569:4;18566:1;18559:15;18593:4;18590:1;18583:15;18609:127;18670:10;18665:3;18661:20;18658:1;18651:31;18701:4;18698:1;18691:15;18725:4;18722:1;18715:15;18741:127;18802:10;18797:3;18793:20;18790:1;18783:31;18833:4;18830:1;18823:15;18857:4;18854:1;18847:15;18873:131;-1:-1:-1;;;;;;18947:32:1;;18937:43;;18927:2;;18994:1;18991;18984:12;18927:2;18917:87;:::o

Swarm Source

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