ETH Price: $2,526.81 (+0.36%)

Token

SyndicateOfBeasts (BEASTS)
 

Overview

Max Total Supply

593 BEASTS

Holders

215

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BEASTS
0xc35765045181141928de2c2019358bf4e52c32d1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SyndicateOfBeasts

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 2 of 15: beasts.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

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

contract SyndicateOfBeasts is ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint256 public maxTokenSupply;

    uint256 public constant MAX_MINTS_PER_TXN = 15;

    uint256 public mintPrice = 60000000 gwei; // 0.06 ETH


    bool public saleIsActive = false;


    string public baseURI;

    string public provenance;

    uint256 public startingIndexBlock;

    uint256 public startingIndex;


    
    event PaymentReleased(address to, uint256 amount);

    constructor(string memory name, string memory symbol, uint256 maxBeastSupply) ERC721(name, symbol) {
        maxTokenSupply = maxBeastSupply;


    }

    function setMaxTokenSupply(uint256 maxBeastSupply) public onlyOwner {
        maxTokenSupply = maxBeastSupply;
    }

    function setMintPrice(uint256 newPrice) public onlyOwner {
        mintPrice = newPrice;
    }


    function withdrawForGiveaway(uint256 amount, address payable to) public onlyOwner {
        Address.sendValue(to, amount);
        emit PaymentReleased(to, amount);
    }

    function withdraw(uint256 amount) public onlyOwner {
        require(address(this).balance >= amount, "Insufficient balance");
        
        payable(msg.sender).transfer(amount);
    }

    /*
    * Mint reserved NFTs for giveaways, devs, etc.
    */
    function reserveMint(uint256 reservedAmount) public onlyOwner {        
        uint256 supply = _tokenIdCounter.current();
        for (uint256 i = 1; i <= reservedAmount; i++) {
            _safeMint(msg.sender, supply + i);
            _tokenIdCounter.increment();
        }
    }

    /*
    * Mint reserved NFTs for giveaways, devs, etc.
    */
    function reserveMint(uint256 reservedAmount, address mintAddress) public onlyOwner {        
        uint256 supply = _tokenIdCounter.current();
        for (uint256 i = 1; i <= reservedAmount; i++) {
            _safeMint(mintAddress, supply + i);
            _tokenIdCounter.increment();
        }
    }

    /*
    * Pause sale if active, make active if paused.
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }


    /*
    * Mint Syndicate of Beasts NFTs!
    */
    function recruitBeasts(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to recruit Beasts");
        require(numberOfTokens <= MAX_MINTS_PER_TXN, "You can only recruit 15 Beasts at a time");
        require(totalSupply() + numberOfTokens <= maxTokenSupply, "Purchase would exceed max available Beasts");
        require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for(uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = _tokenIdCounter.current() + 1;
            if (mintIndex <= maxTokenSupply) {
                _safeMint(msg.sender, mintIndex);
                _tokenIdCounter.increment();
            }
        }

        // If we haven't set the starting index, set the starting index block.
        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

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

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

    /**
     * Set the starting index for the collection.
     */
    function setStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        startingIndex = uint(blockhash(startingIndexBlock)) % maxTokenSupply;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes).
        if (block.number - startingIndexBlock > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % maxTokenSupply;
        }
        // Prevent default sequence.
        if (startingIndex == 0) {
            startingIndex = 1;
        }
    }

    /**
     * Set the starting index block for the collection. Usually, this will be set after the first sale mint.
     */
    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }

    /*     
    * Set provenance once it's calculated.
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        provenance = provenanceHash;
    }

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

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


}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 15: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 15: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 15: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 15: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 15: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 13 of 15: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 14 of 15: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxBeastSupply","type":"uint256"}],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"recruitBeasts","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedAmount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedAmount","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBeastSupply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawForGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600d55600e805460ff191690553480156200002657600080fd5b5060405162002e2738038062002e27833981016040819052620000499162000248565b82518390839062000062906000906020850190620000f7565b50805162000078906001906020840190620000f7565b505050620000956200008f620000a160201b60201c565b620000a5565b600c55506200030b9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010590620002b8565b90600052602060002090601f01602090048101928262000129576000855562000174565b82601f106200014457805160ff191683800117855562000174565b8280016001018555821562000174579182015b828111156200017457825182559160200191906001019062000157565b506200018292915062000186565b5090565b5b8082111562000182576000815560010162000187565b600082601f830112620001ae578081fd5b81516001600160401b0380821115620001cb57620001cb620002f5565b6040516020601f8401601f1916820181018381118382101715620001f357620001f3620002f5565b60405283825285840181018710156200020a578485fd5b8492505b838310156200022d57858301810151828401820152918201916200020e565b838311156200023e57848185840101525b5095945050505050565b6000806000606084860312156200025d578283fd5b83516001600160401b038082111562000274578485fd5b62000282878388016200019d565b9450602086015191508082111562000298578384fd5b50620002a7868287016200019d565b925050604084015190509250925092565b600281046001821680620002cd57607f821691505b60208210811415620002ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b0c806200031b6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610638578063e986655014610658578063eb8d24441461066d578063f2fde38b14610682578063f4a0a528146106a25761023b565b8063b88d4fde146105b9578063c87b56dd146105d9578063cb774d47146105f9578063dfe93fa31461060e578063e36d6498146106235761023b565b80637d17fcbe116100f25780637d17fcbe1461053a5780638da5cb5b1461054f57806395d89b4114610564578063a22cb46514610579578063b07ed982146105995761023b565b80636352211e146104bb5780636817c76c146104db5780636c0360eb146104f057806370a0823114610505578063715018a6146105255761023b565b80632f745c59116101bc5780634d7313a4116101805780634d7313a4146104265780634f6ccce71461044657806350f7c2041461046657806355f804b31461047b57806360b02f701461049b5761023b565b80632f745c591461039e57806334918dfd146103be5780633f4d78b1146103d357806342842e0e146103e657806342966c68146104065761023b565b8063109695231161020357806310969523146102fc5780631342ff4c1461031c57806318160ddd1461033c57806323b872dd1461035e5780632e1a7d4d1461037e5761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c55780630f7309e8146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b36600461203f565b6106c2565b60405161026d91906121c1565b60405180910390f35b34801561028257600080fd5b5061028b6106d5565b60405161026d91906121cc565b3480156102a457600080fd5b506102b86102b33660046120bd565b610767565b60405161026d9190612157565b3480156102d157600080fd5b506102e56102e0366004612014565b6107b3565b005b3480156102f357600080fd5b5061028b61084b565b34801561030857600080fd5b506102e5610317366004612077565b6108d9565b34801561032857600080fd5b506102e56103373660046120bd565b61092f565b34801561034857600080fd5b506103516109b5565b60405161026d9190612968565b34801561036a57600080fd5b506102e5610379366004611f26565b6109bb565b34801561038a57600080fd5b506102e56103993660046120bd565b6109f3565b3480156103aa57600080fd5b506103516103b9366004612014565b610a7f565b3480156103ca57600080fd5b506102e5610ad1565b6102e56103e13660046120bd565b610b24565b3480156103f257600080fd5b506102e5610401366004611f26565b610c2c565b34801561041257600080fd5b506102e56104213660046120bd565b610c47565b34801561043257600080fd5b506102e56104413660046120d5565b610c77565b34801561045257600080fd5b506103516104613660046120bd565b610cfd565b34801561047257600080fd5b50610351610d58565b34801561048757600080fd5b506102e5610496366004612077565b610d5e565b3480156104a757600080fd5b506102e56104b63660046120d5565b610db0565b3480156104c757600080fd5b506102b86104d63660046120bd565b610e37565b3480156104e757600080fd5b50610351610e6c565b3480156104fc57600080fd5b5061028b610e72565b34801561051157600080fd5b50610351610520366004611ed2565b610e7f565b34801561053157600080fd5b506102e5610ec3565b34801561054657600080fd5b506102e5610f0e565b34801561055b57600080fd5b506102b8610f73565b34801561057057600080fd5b5061028b610f82565b34801561058557600080fd5b506102e5610594366004611fe3565b610f91565b3480156105a557600080fd5b506102e56105b43660046120bd565b61105f565b3480156105c557600080fd5b506102e56105d4366004611f66565b6110a3565b3480156105e557600080fd5b5061028b6105f43660046120bd565b6110dc565b34801561060557600080fd5b5061035161115f565b34801561061a57600080fd5b50610351611165565b34801561062f57600080fd5b5061035161116a565b34801561064457600080fd5b50610260610653366004611eee565b611170565b34801561066457600080fd5b506102e561119e565b34801561067957600080fd5b50610260611271565b34801561068e57600080fd5b506102e561069d366004611ed2565b61127a565b3480156106ae57600080fd5b506102e56106bd3660046120bd565b6112e8565b60006106cd8261132c565b90505b919050565b6060600080546106e4906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610710906129ff565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b600061077282611351565b6107975760405162461bcd60e51b815260040161078e9061265a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107be82610e37565b9050806001600160a01b0316836001600160a01b031614156107f25760405162461bcd60e51b815260040161078e90612773565b806001600160a01b031661080461136e565b6001600160a01b0316148061082057506108208161065361136e565b61083c5760405162461bcd60e51b815260040161078e90612535565b6108468383611372565b505050565b60108054610858906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610884906129ff565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b505050505081565b6108e161136e565b6001600160a01b03166108f2610f73565b6001600160a01b0316146109185760405162461bcd60e51b815260040161078e906126a6565b805161092b906010906020840190611dc9565b5050565b61093761136e565b6001600160a01b0316610948610f73565b6001600160a01b03161461096e5760405162461bcd60e51b815260040161078e906126a6565b600061097a600b6113e0565b905060015b82811161084657610999336109948385612971565b6113e4565b6109a3600b6113fe565b806109ad81612a3a565b91505061097f565b60085490565b6109cc6109c661136e565b82611407565b6109e85760405162461bcd60e51b815260040161078e906127e9565b61084683838361148c565b6109fb61136e565b6001600160a01b0316610a0c610f73565b6001600160a01b031614610a325760405162461bcd60e51b815260040161078e906126a6565b80471015610a525760405162461bcd60e51b815260040161078e906123b9565b604051339082156108fc029083906000818181858888f1935050505015801561092b573d6000803e3d6000fd5b6000610a8a83610e7f565b8210610aa85760405162461bcd60e51b815260040161078e906121df565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ad961136e565b6001600160a01b0316610aea610f73565b6001600160a01b031614610b105760405162461bcd60e51b815260040161078e906126a6565b600e805460ff19811660ff90911615179055565b600e5460ff16610b465760405162461bcd60e51b815260040161078e906122f9565b600f811115610b675760405162461bcd60e51b815260040161078e90612886565b600c5481610b736109b5565b610b7d9190612971565b1115610b9b5760405162461bcd60e51b815260040161078e906128ce565b3481600d54610baa919061299d565b1115610bc85760405162461bcd60e51b815260040161078e906123e7565b60005b81811015610c1c576000610bdf600b6113e0565b610bea906001612971565b9050600c548111610c0957610bff33826113e4565b610c09600b6113fe565b5080610c1481612a3a565b915050610bcb565b50601154610c2957436011555b50565b610846838383604051806020016040528060008152506110a3565b610c526109c661136e565b610c6e5760405162461bcd60e51b815260040161078e90612918565b610c29816115b9565b610c7f61136e565b6001600160a01b0316610c90610f73565b6001600160a01b031614610cb65760405162461bcd60e51b815260040161078e906126a6565b610cc08183611660565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568183604051610cf192919061216b565b60405180910390a15050565b6000610d076109b5565b8210610d255760405162461bcd60e51b815260040161078e9061283a565b60088281548110610d4657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600c5481565b610d6661136e565b6001600160a01b0316610d77610f73565b6001600160a01b031614610d9d5760405162461bcd60e51b815260040161078e906126a6565b805161092b90600f906020840190611dc9565b610db861136e565b6001600160a01b0316610dc9610f73565b6001600160a01b031614610def5760405162461bcd60e51b815260040161078e906126a6565b6000610dfb600b6113e0565b905060015b838111610e3157610e15836109948385612971565b610e1f600b6113fe565b80610e2981612a3a565b915050610e00565b50505050565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260040161078e906125dc565b600d5481565b600f8054610858906129ff565b60006001600160a01b038216610ea75760405162461bcd60e51b815260040161078e90612592565b506001600160a01b031660009081526003602052604090205490565b610ecb61136e565b6001600160a01b0316610edc610f73565b6001600160a01b031614610f025760405162461bcd60e51b815260040161078e906126a6565b610f0c60006116fc565b565b610f1661136e565b6001600160a01b0316610f27610f73565b6001600160a01b031614610f4d5760405162461bcd60e51b815260040161078e906126a6565b60125415610f6d5760405162461bcd60e51b815260040161078e906124fe565b43601155565b600a546001600160a01b031690565b6060600180546106e4906129ff565b610f9961136e565b6001600160a01b0316826001600160a01b03161415610fca5760405162461bcd60e51b815260040161078e90612382565b8060056000610fd761136e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561101b61136e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105391906121c1565b60405180910390a35050565b61106761136e565b6001600160a01b0316611078610f73565b6001600160a01b03161461109e5760405162461bcd60e51b815260040161078e906126a6565b600c55565b6110b46110ae61136e565b83611407565b6110d05760405162461bcd60e51b815260040161078e906127e9565b610e318484848461174e565b60606110e782611351565b6111035760405162461bcd60e51b815260040161078e90612724565b600061110d611781565b9050600081511161112d5760405180602001604052806000815250611158565b8061113784611790565b604051602001611148929190612125565b6040516020818303038152906040525b9392505050565b60125481565b600f81565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111a661136e565b6001600160a01b03166111b7610f73565b6001600160a01b0316146111dd5760405162461bcd60e51b815260040161078e906126a6565b601254156111fd5760405162461bcd60e51b815260040161078e906124fe565b60115461121c5760405162461bcd60e51b815260040161078e906127b4565b600c5460115461122d919040612a55565b60125560115460ff9061124090436129bc565b111561126357600c546112546001436129bc565b61125f919040612a55565b6012555b601254610f0c576001601255565b600e5460ff1681565b61128261136e565b6001600160a01b0316611293610f73565b6001600160a01b0316146112b95760405162461bcd60e51b815260040161078e906126a6565b6001600160a01b0381166112df5760405162461bcd60e51b815260040161078e9061227c565b610c29816116fc565b6112f061136e565b6001600160a01b0316611301610f73565b6001600160a01b0316146113275760405162461bcd60e51b815260040161078e906126a6565b600d55565b60006001600160e01b0319821663780e9d6360e01b14806106cd57506106cd826118ab565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113a782610e37565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b61092b8282604051806020016040528060008152506118eb565b80546001019055565b600061141282611351565b61142e5760405162461bcd60e51b815260040161078e906124b2565b600061143983610e37565b9050806001600160a01b0316846001600160a01b031614806114745750836001600160a01b031661146984610767565b6001600160a01b0316145b8061148457506114848185611170565b949350505050565b826001600160a01b031661149f82610e37565b6001600160a01b0316146114c55760405162461bcd60e51b815260040161078e906126db565b6001600160a01b0382166114eb5760405162461bcd60e51b815260040161078e9061233e565b6114f683838361191e565b611501600082611372565b6001600160a01b038316600090815260036020526040812080546001929061152a9084906129bc565b90915550506001600160a01b0382166000908152600360205260408120805460019290611558908490612971565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006115c482610e37565b90506115d28160008461191e565b6115dd600083611372565b6001600160a01b03811660009081526003602052604081208054600192906116069084906129bc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b804710156116805760405162461bcd60e51b815260040161078e9061247b565b6000826001600160a01b03168260405161169990612154565b60006040518083038185875af1925050503d80600081146116d6576040519150601f19603f3d011682016040523d82523d6000602084013e6116db565b606091505b50509050806108465760405162461bcd60e51b815260040161078e9061241e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61175984848461148c565b61176584848484611929565b610e315760405162461bcd60e51b815260040161078e9061222a565b6060600f80546106e4906129ff565b6060816117b557506040805180820190915260018152600360fc1b60208201526106d0565b8160005b81156117df57806117c981612a3a565b91506117d89050600a83612989565b91506117b9565b60008167ffffffffffffffff81111561180857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611832576020820181803683370190505b5090505b8415611484576118476001836129bc565b9150611854600a86612a55565b61185f906030612971565b60f81b81838151811061188257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118a4600a86612989565b9450611836565b60006001600160e01b031982166380ac58cd60e01b14806118dc57506001600160e01b03198216635b5e139f60e01b145b806106cd57506106cd82611a44565b6118f58383611a5d565b6119026000848484611929565b6108465760405162461bcd60e51b815260040161078e9061222a565b610846838383611b3c565b600061193d846001600160a01b0316611bc5565b15611a3957836001600160a01b031663150b7a0261195961136e565b8786866040518563ffffffff1660e01b815260040161197b9493929190612184565b602060405180830381600087803b15801561199557600080fd5b505af19250505080156119c5575060408051601f3d908101601f191682019092526119c29181019061205b565b60015b611a1f573d8080156119f3576040519150601f19603f3d011682016040523d82523d6000602084013e6119f8565b606091505b508051611a175760405162461bcd60e51b815260040161078e9061222a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611484565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b038216611a835760405162461bcd60e51b815260040161078e90612625565b611a8c81611351565b15611aa95760405162461bcd60e51b815260040161078e906122c2565b611ab56000838361191e565b6001600160a01b0382166000908152600360205260408120805460019290611ade908490612971565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611b47838383610846565b6001600160a01b038316611b6357611b5e81611bcb565b611b86565b816001600160a01b0316836001600160a01b031614611b8657611b868382611c0f565b6001600160a01b038216611ba257611b9d81611cac565b610846565b826001600160a01b0316826001600160a01b031614610846576108468282611d85565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c1c84610e7f565b611c2691906129bc565b600083815260076020526040902054909150808214611c79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cbe906001906129bc565b60008381526009602052604081205460088054939450909284908110611cf457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d2357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d6957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d9083610e7f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611dd5906129ff565b90600052602060002090601f016020900481019282611df75760008555611e3d565b82601f10611e1057805160ff1916838001178555611e3d565b82800160010185558215611e3d579182015b82811115611e3d578251825591602001919060010190611e22565b50611e49929150611e4d565b5090565b5b80821115611e495760008155600101611e4e565b600067ffffffffffffffff80841115611e7d57611e7d612a95565b604051601f8501601f191681016020018281118282101715611ea157611ea1612a95565b604052848152915081838501861015611eb957600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611ee3578081fd5b813561115881612aab565b60008060408385031215611f00578081fd5b8235611f0b81612aab565b91506020830135611f1b81612aab565b809150509250929050565b600080600060608486031215611f3a578081fd5b8335611f4581612aab565b92506020840135611f5581612aab565b929592945050506040919091013590565b60008060008060808587031215611f7b578081fd5b8435611f8681612aab565b93506020850135611f9681612aab565b925060408501359150606085013567ffffffffffffffff811115611fb8578182fd5b8501601f81018713611fc8578182fd5b611fd787823560208401611e62565b91505092959194509250565b60008060408385031215611ff5578182fd5b823561200081612aab565b915060208301358015158114611f1b578182fd5b60008060408385031215612026578182fd5b823561203181612aab565b946020939093013593505050565b600060208284031215612050578081fd5b813561115881612ac0565b60006020828403121561206c578081fd5b815161115881612ac0565b600060208284031215612088578081fd5b813567ffffffffffffffff81111561209e578182fd5b8201601f810184136120ae578182fd5b61148484823560208401611e62565b6000602082840312156120ce578081fd5b5035919050565b600080604083850312156120e7578182fd5b823591506020830135611f1b81612aab565b600081518084526121118160208601602086016129d3565b601f01601f19169290920160200192915050565b600083516121378184602088016129d3565b83519083019061214b8183602088016129d3565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b7908301846120f9565b9695505050505050565b901515815260200190565b60006020825261115860208301846120f9565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526025908201527f53616c65206d7573742062652061637469766520746f20726563727569742042604082015264656173747360d81b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526028908201527f596f752063616e206f6e6c7920726563727569742031352042656173747320616040820152677420612074696d6560c01b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820617661696c61604082015269626c652042656173747360b01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b6000821982111561298457612984612a69565b500190565b60008261299857612998612a7f565b500490565b60008160001904831182151516156129b7576129b7612a69565b500290565b6000828210156129ce576129ce612a69565b500390565b60005b838110156129ee5781810151838201526020016129d6565b83811115610e315750506000910152565b600281046001821680612a1357607f821691505b60208210811415612a3457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4e57612a4e612a69565b5060010190565b600082612a6457612a64612a7f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2957600080fd5b6001600160e01b031981168114610c2957600080fdfea264697066735822122021ecf71be01945c425e73af8ae3323ce5bdc4659e60011066860e3a3f2e2cb6f64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001153796e6469636174654f6642656173747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064245415354530000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610638578063e986655014610658578063eb8d24441461066d578063f2fde38b14610682578063f4a0a528146106a25761023b565b8063b88d4fde146105b9578063c87b56dd146105d9578063cb774d47146105f9578063dfe93fa31461060e578063e36d6498146106235761023b565b80637d17fcbe116100f25780637d17fcbe1461053a5780638da5cb5b1461054f57806395d89b4114610564578063a22cb46514610579578063b07ed982146105995761023b565b80636352211e146104bb5780636817c76c146104db5780636c0360eb146104f057806370a0823114610505578063715018a6146105255761023b565b80632f745c59116101bc5780634d7313a4116101805780634d7313a4146104265780634f6ccce71461044657806350f7c2041461046657806355f804b31461047b57806360b02f701461049b5761023b565b80632f745c591461039e57806334918dfd146103be5780633f4d78b1146103d357806342842e0e146103e657806342966c68146104065761023b565b8063109695231161020357806310969523146102fc5780631342ff4c1461031c57806318160ddd1461033c57806323b872dd1461035e5780632e1a7d4d1461037e5761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c55780630f7309e8146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b36600461203f565b6106c2565b60405161026d91906121c1565b60405180910390f35b34801561028257600080fd5b5061028b6106d5565b60405161026d91906121cc565b3480156102a457600080fd5b506102b86102b33660046120bd565b610767565b60405161026d9190612157565b3480156102d157600080fd5b506102e56102e0366004612014565b6107b3565b005b3480156102f357600080fd5b5061028b61084b565b34801561030857600080fd5b506102e5610317366004612077565b6108d9565b34801561032857600080fd5b506102e56103373660046120bd565b61092f565b34801561034857600080fd5b506103516109b5565b60405161026d9190612968565b34801561036a57600080fd5b506102e5610379366004611f26565b6109bb565b34801561038a57600080fd5b506102e56103993660046120bd565b6109f3565b3480156103aa57600080fd5b506103516103b9366004612014565b610a7f565b3480156103ca57600080fd5b506102e5610ad1565b6102e56103e13660046120bd565b610b24565b3480156103f257600080fd5b506102e5610401366004611f26565b610c2c565b34801561041257600080fd5b506102e56104213660046120bd565b610c47565b34801561043257600080fd5b506102e56104413660046120d5565b610c77565b34801561045257600080fd5b506103516104613660046120bd565b610cfd565b34801561047257600080fd5b50610351610d58565b34801561048757600080fd5b506102e5610496366004612077565b610d5e565b3480156104a757600080fd5b506102e56104b63660046120d5565b610db0565b3480156104c757600080fd5b506102b86104d63660046120bd565b610e37565b3480156104e757600080fd5b50610351610e6c565b3480156104fc57600080fd5b5061028b610e72565b34801561051157600080fd5b50610351610520366004611ed2565b610e7f565b34801561053157600080fd5b506102e5610ec3565b34801561054657600080fd5b506102e5610f0e565b34801561055b57600080fd5b506102b8610f73565b34801561057057600080fd5b5061028b610f82565b34801561058557600080fd5b506102e5610594366004611fe3565b610f91565b3480156105a557600080fd5b506102e56105b43660046120bd565b61105f565b3480156105c557600080fd5b506102e56105d4366004611f66565b6110a3565b3480156105e557600080fd5b5061028b6105f43660046120bd565b6110dc565b34801561060557600080fd5b5061035161115f565b34801561061a57600080fd5b50610351611165565b34801561062f57600080fd5b5061035161116a565b34801561064457600080fd5b50610260610653366004611eee565b611170565b34801561066457600080fd5b506102e561119e565b34801561067957600080fd5b50610260611271565b34801561068e57600080fd5b506102e561069d366004611ed2565b61127a565b3480156106ae57600080fd5b506102e56106bd3660046120bd565b6112e8565b60006106cd8261132c565b90505b919050565b6060600080546106e4906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610710906129ff565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b600061077282611351565b6107975760405162461bcd60e51b815260040161078e9061265a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107be82610e37565b9050806001600160a01b0316836001600160a01b031614156107f25760405162461bcd60e51b815260040161078e90612773565b806001600160a01b031661080461136e565b6001600160a01b0316148061082057506108208161065361136e565b61083c5760405162461bcd60e51b815260040161078e90612535565b6108468383611372565b505050565b60108054610858906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610884906129ff565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b505050505081565b6108e161136e565b6001600160a01b03166108f2610f73565b6001600160a01b0316146109185760405162461bcd60e51b815260040161078e906126a6565b805161092b906010906020840190611dc9565b5050565b61093761136e565b6001600160a01b0316610948610f73565b6001600160a01b03161461096e5760405162461bcd60e51b815260040161078e906126a6565b600061097a600b6113e0565b905060015b82811161084657610999336109948385612971565b6113e4565b6109a3600b6113fe565b806109ad81612a3a565b91505061097f565b60085490565b6109cc6109c661136e565b82611407565b6109e85760405162461bcd60e51b815260040161078e906127e9565b61084683838361148c565b6109fb61136e565b6001600160a01b0316610a0c610f73565b6001600160a01b031614610a325760405162461bcd60e51b815260040161078e906126a6565b80471015610a525760405162461bcd60e51b815260040161078e906123b9565b604051339082156108fc029083906000818181858888f1935050505015801561092b573d6000803e3d6000fd5b6000610a8a83610e7f565b8210610aa85760405162461bcd60e51b815260040161078e906121df565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ad961136e565b6001600160a01b0316610aea610f73565b6001600160a01b031614610b105760405162461bcd60e51b815260040161078e906126a6565b600e805460ff19811660ff90911615179055565b600e5460ff16610b465760405162461bcd60e51b815260040161078e906122f9565b600f811115610b675760405162461bcd60e51b815260040161078e90612886565b600c5481610b736109b5565b610b7d9190612971565b1115610b9b5760405162461bcd60e51b815260040161078e906128ce565b3481600d54610baa919061299d565b1115610bc85760405162461bcd60e51b815260040161078e906123e7565b60005b81811015610c1c576000610bdf600b6113e0565b610bea906001612971565b9050600c548111610c0957610bff33826113e4565b610c09600b6113fe565b5080610c1481612a3a565b915050610bcb565b50601154610c2957436011555b50565b610846838383604051806020016040528060008152506110a3565b610c526109c661136e565b610c6e5760405162461bcd60e51b815260040161078e90612918565b610c29816115b9565b610c7f61136e565b6001600160a01b0316610c90610f73565b6001600160a01b031614610cb65760405162461bcd60e51b815260040161078e906126a6565b610cc08183611660565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568183604051610cf192919061216b565b60405180910390a15050565b6000610d076109b5565b8210610d255760405162461bcd60e51b815260040161078e9061283a565b60088281548110610d4657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600c5481565b610d6661136e565b6001600160a01b0316610d77610f73565b6001600160a01b031614610d9d5760405162461bcd60e51b815260040161078e906126a6565b805161092b90600f906020840190611dc9565b610db861136e565b6001600160a01b0316610dc9610f73565b6001600160a01b031614610def5760405162461bcd60e51b815260040161078e906126a6565b6000610dfb600b6113e0565b905060015b838111610e3157610e15836109948385612971565b610e1f600b6113fe565b80610e2981612a3a565b915050610e00565b50505050565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260040161078e906125dc565b600d5481565b600f8054610858906129ff565b60006001600160a01b038216610ea75760405162461bcd60e51b815260040161078e90612592565b506001600160a01b031660009081526003602052604090205490565b610ecb61136e565b6001600160a01b0316610edc610f73565b6001600160a01b031614610f025760405162461bcd60e51b815260040161078e906126a6565b610f0c60006116fc565b565b610f1661136e565b6001600160a01b0316610f27610f73565b6001600160a01b031614610f4d5760405162461bcd60e51b815260040161078e906126a6565b60125415610f6d5760405162461bcd60e51b815260040161078e906124fe565b43601155565b600a546001600160a01b031690565b6060600180546106e4906129ff565b610f9961136e565b6001600160a01b0316826001600160a01b03161415610fca5760405162461bcd60e51b815260040161078e90612382565b8060056000610fd761136e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561101b61136e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105391906121c1565b60405180910390a35050565b61106761136e565b6001600160a01b0316611078610f73565b6001600160a01b03161461109e5760405162461bcd60e51b815260040161078e906126a6565b600c55565b6110b46110ae61136e565b83611407565b6110d05760405162461bcd60e51b815260040161078e906127e9565b610e318484848461174e565b60606110e782611351565b6111035760405162461bcd60e51b815260040161078e90612724565b600061110d611781565b9050600081511161112d5760405180602001604052806000815250611158565b8061113784611790565b604051602001611148929190612125565b6040516020818303038152906040525b9392505050565b60125481565b600f81565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111a661136e565b6001600160a01b03166111b7610f73565b6001600160a01b0316146111dd5760405162461bcd60e51b815260040161078e906126a6565b601254156111fd5760405162461bcd60e51b815260040161078e906124fe565b60115461121c5760405162461bcd60e51b815260040161078e906127b4565b600c5460115461122d919040612a55565b60125560115460ff9061124090436129bc565b111561126357600c546112546001436129bc565b61125f919040612a55565b6012555b601254610f0c576001601255565b600e5460ff1681565b61128261136e565b6001600160a01b0316611293610f73565b6001600160a01b0316146112b95760405162461bcd60e51b815260040161078e906126a6565b6001600160a01b0381166112df5760405162461bcd60e51b815260040161078e9061227c565b610c29816116fc565b6112f061136e565b6001600160a01b0316611301610f73565b6001600160a01b0316146113275760405162461bcd60e51b815260040161078e906126a6565b600d55565b60006001600160e01b0319821663780e9d6360e01b14806106cd57506106cd826118ab565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113a782610e37565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b61092b8282604051806020016040528060008152506118eb565b80546001019055565b600061141282611351565b61142e5760405162461bcd60e51b815260040161078e906124b2565b600061143983610e37565b9050806001600160a01b0316846001600160a01b031614806114745750836001600160a01b031661146984610767565b6001600160a01b0316145b8061148457506114848185611170565b949350505050565b826001600160a01b031661149f82610e37565b6001600160a01b0316146114c55760405162461bcd60e51b815260040161078e906126db565b6001600160a01b0382166114eb5760405162461bcd60e51b815260040161078e9061233e565b6114f683838361191e565b611501600082611372565b6001600160a01b038316600090815260036020526040812080546001929061152a9084906129bc565b90915550506001600160a01b0382166000908152600360205260408120805460019290611558908490612971565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006115c482610e37565b90506115d28160008461191e565b6115dd600083611372565b6001600160a01b03811660009081526003602052604081208054600192906116069084906129bc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b804710156116805760405162461bcd60e51b815260040161078e9061247b565b6000826001600160a01b03168260405161169990612154565b60006040518083038185875af1925050503d80600081146116d6576040519150601f19603f3d011682016040523d82523d6000602084013e6116db565b606091505b50509050806108465760405162461bcd60e51b815260040161078e9061241e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61175984848461148c565b61176584848484611929565b610e315760405162461bcd60e51b815260040161078e9061222a565b6060600f80546106e4906129ff565b6060816117b557506040805180820190915260018152600360fc1b60208201526106d0565b8160005b81156117df57806117c981612a3a565b91506117d89050600a83612989565b91506117b9565b60008167ffffffffffffffff81111561180857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611832576020820181803683370190505b5090505b8415611484576118476001836129bc565b9150611854600a86612a55565b61185f906030612971565b60f81b81838151811061188257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118a4600a86612989565b9450611836565b60006001600160e01b031982166380ac58cd60e01b14806118dc57506001600160e01b03198216635b5e139f60e01b145b806106cd57506106cd82611a44565b6118f58383611a5d565b6119026000848484611929565b6108465760405162461bcd60e51b815260040161078e9061222a565b610846838383611b3c565b600061193d846001600160a01b0316611bc5565b15611a3957836001600160a01b031663150b7a0261195961136e565b8786866040518563ffffffff1660e01b815260040161197b9493929190612184565b602060405180830381600087803b15801561199557600080fd5b505af19250505080156119c5575060408051601f3d908101601f191682019092526119c29181019061205b565b60015b611a1f573d8080156119f3576040519150601f19603f3d011682016040523d82523d6000602084013e6119f8565b606091505b508051611a175760405162461bcd60e51b815260040161078e9061222a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611484565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b038216611a835760405162461bcd60e51b815260040161078e90612625565b611a8c81611351565b15611aa95760405162461bcd60e51b815260040161078e906122c2565b611ab56000838361191e565b6001600160a01b0382166000908152600360205260408120805460019290611ade908490612971565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611b47838383610846565b6001600160a01b038316611b6357611b5e81611bcb565b611b86565b816001600160a01b0316836001600160a01b031614611b8657611b868382611c0f565b6001600160a01b038216611ba257611b9d81611cac565b610846565b826001600160a01b0316826001600160a01b031614610846576108468282611d85565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c1c84610e7f565b611c2691906129bc565b600083815260076020526040902054909150808214611c79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cbe906001906129bc565b60008381526009602052604081205460088054939450909284908110611cf457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d2357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d6957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d9083610e7f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611dd5906129ff565b90600052602060002090601f016020900481019282611df75760008555611e3d565b82601f10611e1057805160ff1916838001178555611e3d565b82800160010185558215611e3d579182015b82811115611e3d578251825591602001919060010190611e22565b50611e49929150611e4d565b5090565b5b80821115611e495760008155600101611e4e565b600067ffffffffffffffff80841115611e7d57611e7d612a95565b604051601f8501601f191681016020018281118282101715611ea157611ea1612a95565b604052848152915081838501861015611eb957600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611ee3578081fd5b813561115881612aab565b60008060408385031215611f00578081fd5b8235611f0b81612aab565b91506020830135611f1b81612aab565b809150509250929050565b600080600060608486031215611f3a578081fd5b8335611f4581612aab565b92506020840135611f5581612aab565b929592945050506040919091013590565b60008060008060808587031215611f7b578081fd5b8435611f8681612aab565b93506020850135611f9681612aab565b925060408501359150606085013567ffffffffffffffff811115611fb8578182fd5b8501601f81018713611fc8578182fd5b611fd787823560208401611e62565b91505092959194509250565b60008060408385031215611ff5578182fd5b823561200081612aab565b915060208301358015158114611f1b578182fd5b60008060408385031215612026578182fd5b823561203181612aab565b946020939093013593505050565b600060208284031215612050578081fd5b813561115881612ac0565b60006020828403121561206c578081fd5b815161115881612ac0565b600060208284031215612088578081fd5b813567ffffffffffffffff81111561209e578182fd5b8201601f810184136120ae578182fd5b61148484823560208401611e62565b6000602082840312156120ce578081fd5b5035919050565b600080604083850312156120e7578182fd5b823591506020830135611f1b81612aab565b600081518084526121118160208601602086016129d3565b601f01601f19169290920160200192915050565b600083516121378184602088016129d3565b83519083019061214b8183602088016129d3565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b7908301846120f9565b9695505050505050565b901515815260200190565b60006020825261115860208301846120f9565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526025908201527f53616c65206d7573742062652061637469766520746f20726563727569742042604082015264656173747360d81b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526028908201527f596f752063616e206f6e6c7920726563727569742031352042656173747320616040820152677420612074696d6560c01b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820617661696c61604082015269626c652042656173747360b01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b6000821982111561298457612984612a69565b500190565b60008261299857612998612a7f565b500490565b60008160001904831182151516156129b7576129b7612a69565b500290565b6000828210156129ce576129ce612a69565b500390565b60005b838110156129ee5781810151838201526020016129d6565b83811115610e315750506000910152565b600281046001821680612a1357607f821691505b60208210811415612a3457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4e57612a4e612a69565b5060010190565b600082612a6457612a64612a7f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2957600080fd5b6001600160e01b031981168114610c2957600080fdfea264697066735822122021ecf71be01945c425e73af8ae3323ce5bdc4659e60011066860e3a3f2e2cb6f64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001153796e6469636174654f6642656173747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064245415354530000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SyndicateOfBeasts
Arg [1] : symbol (string): BEASTS
Arg [2] : maxBeastSupply (uint256): 10000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 53796e6469636174654f66426561737473000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4245415354530000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

235:5133:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5190:171;;;;;;;;;;-1:-1:-1;5190:171:14;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3398:401::-;;;;;;;;;;-1:-1:-1;3398:401:4;;;;;:::i;:::-;;:::i;:::-;;644:24:14;;;;;;;;;;;;;:::i;4873:120::-;;;;;;;;;;-1:-1:-1;4873:120:14;;;;;:::i;:::-;;:::i;1663:289::-;;;;;;;;;;-1:-1:-1;1663:289:14;;;;;:::i;:::-;;:::i;1534:111:6:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4724:330:4:-;;;;;;;;;;-1:-1:-1;4724:330:4;;;;;:::i;:::-;;:::i;1396:191:14:-;;;;;;;;;;-1:-1:-1;1396:191:14;;;;;:::i;:::-;;:::i;1210:253:6:-;;;;;;;;;;-1:-1:-1;1210:253:6;;;;;:::i;:::-;;:::i;2415:89:14:-;;;;;;;;;;;;;:::i;2568:923::-;;;;;;:::i;:::-;;:::i;5120:179:4:-;;;;;;;;;;-1:-1:-1;5120:179:4;;;;;:::i;:::-;;:::i;437:241:5:-;;;;;;;;;;-1:-1:-1;437:241:5;;;;;:::i;:::-;;:::i;1215:173:14:-;;;;;;;;;;-1:-1:-1;1215:173:14;;;;;:::i;:::-;;:::i;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;415:29:14:-;;;;;;;;;;;;;:::i;3615:102::-;;;;;;;;;;-1:-1:-1;3615:102:14;;;;;:::i;:::-;;:::i;2028:311::-;;;;;;;;;;-1:-1:-1;2028:311:14;;;;;:::i;:::-;;:::i;2052:235:4:-;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;508:40:14:-;;;;;;;;;;;;;:::i;614:21::-;;;;;;;;;;;;;:::i;1790:205:4:-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:12:-;;;;;;;;;;;;;:::i;4608:192:14:-;;;;;;;;;;;;;:::i;966:85:12:-;;;;;;;;;;;;;:::i;2511:102:4:-;;;;;;;;;;;;;:::i;4144:290::-;;;;;;;;;;-1:-1:-1;4144:290:4;;;;;:::i;:::-;;:::i;983:118:14:-;;;;;;;;;;-1:-1:-1;983:118:14;;;;;:::i;:::-;;:::i;5365:320:4:-;;;;;;;;;;-1:-1:-1;5365:320:4;;;;;:::i;:::-;;:::i;2679:329::-;;;;;;;;;;-1:-1:-1;2679:329:4;;;;;:::i;:::-;;:::i;719:28:14:-;;;;;;;;;;;;;:::i;453:46::-;;;;;;;;;;;;;:::i;677:33::-;;;;;;;;;;;;;:::i;4500:162:4:-;;;;;;;;;;-1:-1:-1;4500:162:4;;;;;:::i;:::-;;:::i;3794:678:14:-;;;;;;;;;;;;;:::i;571:32::-;;;;;;;;;;;;;:::i;1839:189:12:-;;;;;;;;;;-1:-1:-1;1839:189:12;;;;;:::i;:::-;;:::i;1109:96:14:-;;;;;;;;;;-1:-1:-1;1109:96:14;;;;;:::i;:::-;;:::i;5190:171::-;5293:4;5317:36;5341:11;5317:23;:36::i;:::-;5310:43;;5190:171;;;;:::o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;-1:-1:-1;;;3955:73:4;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;4046:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:4;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:4;:2;-1:-1:-1;;;;;3535:11:4;;;3527:57;;;;-1:-1:-1;;;3527:57:4;;;;;;;:::i;:::-;3632:5;-1:-1:-1;;;;;3616:21:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3616:21:4;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:4;;;;;;;:::i;:::-;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;644:24:14:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4873:120::-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;4958:27:14;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4873:120:::0;:::o;1663:289::-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;1744:14:14::1;1761:25;:15;:23;:25::i;:::-;1744:42:::0;-1:-1:-1;1814:1:14::1;1797:148;1822:14;1817:1;:19;1797:148;;1858:33;1868:10;1880;1889:1:::0;1880:6;:10:::1;:::i;:::-;1858:9;:33::i;:::-;1906:27;:15;:25;:27::i;:::-;1838:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1797:148;;1534:111:6::0;1621:10;:17;1534:111;:::o;4724:330:4:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:4;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1396:191:14:-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;1491:6:14::1;1466:21;:31;;1458:64;;;;-1:-1:-1::0;;;1458:64:14::1;;;;;;;:::i;:::-;1543:36;::::0;1551:10:::1;::::0;1543:36;::::1;;;::::0;1572:6;;1543:36:::1;::::0;;;1572:6;1551:10;1543:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;1210:253:6::0;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1430:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;2415:89:14:-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;2484:12:14::1;::::0;;-1:-1:-1;;2468:28:14;::::1;2484:12;::::0;;::::1;2483:13;2468:28;::::0;;2415:89::o;2568:923::-;2649:12;;;;2641:62;;;;-1:-1:-1;;;2641:62:14;;;;;;;:::i;:::-;497:2;2722:14;:35;;2714:88;;;;-1:-1:-1;;;2714:88:14;;;;;;;:::i;:::-;2855:14;;2837;2821:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:48;;2813:103;;;;-1:-1:-1;;;2813:103:14;;;;;;;:::i;:::-;2965:9;2947:14;2935:9;;:26;;;;:::i;:::-;:39;;2927:83;;;;-1:-1:-1;;;2927:83:14;;;;;;;:::i;:::-;3027:9;3023:280;3046:14;3042:1;:18;3023:280;;;3082:17;3102:25;:15;:23;:25::i;:::-;:29;;3130:1;3102:29;:::i;:::-;3082:49;;3163:14;;3150:9;:27;3146:146;;3198:32;3208:10;3220:9;3198;:32::i;:::-;3249:27;:15;:25;:27::i;:::-;-1:-1:-1;3062:3:14;;;;:::i;:::-;;;;3023:280;;;-1:-1:-1;3399:18:14;;3395:89;;3460:12;3439:18;:33;3395:89;2568:923;:::o;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;437:241:5:-;553:41;572:12;:10;:12::i;553:41::-;545:102;;;;-1:-1:-1;;;545:102:5;;;;;;;:::i;:::-;657:14;663:7;657:5;:14::i;1215:173:14:-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;1308:29:14::1;1326:2;1330:6;1308:17;:29::i;:::-;1353:27;1369:2;1373:6;1353:27;;;;;;;:::i;:::-;;;;;;;;1215:173:::0;;:::o;1717:230:6:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:6;;;;;;;:::i;:::-;1923:10;1934:5;1923:17;;;;;;-1:-1:-1;;;1923:17:6;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;415:29:14:-;;;;:::o;3615:102::-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;3689:20:14;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;2028:311::-:0;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;2130:14:14::1;2147:25;:15;:23;:25::i;:::-;2130:42:::0;-1:-1:-1;2200:1:14::1;2183:149;2208:14;2203:1;:19;2183:149;;2244:34;2254:11:::0;2267:10:::1;2276:1:::0;2267:6;:10:::1;:::i;2244:34::-;2293:27;:15;:25;:27::i;:::-;2224:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2183:149;;;;1248:1:12;2028:311:14::0;;:::o;2052:235:4:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;;;;;;:::i;508:40:14:-;;;;:::o;614:21::-;;;;;;;:::i;1790:205:4:-;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:12:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;4608:192:14:-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;4686:13:14::1;::::0;:18;4678:60:::1;;;;-1:-1:-1::0;;;4678:60:14::1;;;;;;;:::i;:::-;4780:12;4759:18;:33:::0;4608:192::o;966:85:12:-;1038:6;;-1:-1:-1;;;;;1038:6:12;966:85;:::o;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;4258:12;:10;:12::i;:::-;-1:-1:-1;;;;;4246:24:4;:8;-1:-1:-1;;;;;4246:24:4;;;4238:62;;;;-1:-1:-1;;;4238:62:4;;;;;;;:::i;:::-;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:32:4;;;;;;;;;;;;;;;;;-1:-1:-1;4311:32:4;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:4;;;;;;;;;;;4394:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:48:4;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;983:118:14:-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;1062:14:14::1;:31:::0;983:118::o;5365:320:4:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:4;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;2679:329::-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;-1:-1:-1;;;2777:76:4;;;;;;;:::i;:::-;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:4:o;719:28:14:-;;;;:::o;453:46::-;497:2;453:46;:::o;677:33::-;;;;:::o;4500:162:4:-;-1:-1:-1;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162::o;3794:678:14:-;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;3858:13:14::1;::::0;:18;3850:60:::1;;;;-1:-1:-1::0;;;3850:60:14::1;;;;;;;:::i;:::-;3929:18;::::0;3921:68:::1;;;;-1:-1:-1::0;;;3921:68:14::1;;;;;;;:::i;:::-;4064:14;::::0;4041:18:::1;::::0;4026:52:::1;::::0;4064:14;4031:29:::1;4026:52;:::i;:::-;4010:13;:68:::0;4230:18:::1;::::0;4251:3:::1;::::0;4215:33:::1;::::0;:12:::1;:33;:::i;:::-;:39;4211:138;;;4323:14;::::0;4302:16:::1;4317:1;4302:12;:16;:::i;:::-;4287:50;::::0;;4292:27:::1;4287:50;:::i;:::-;4271:13;:66:::0;4211:138:::1;4401:13;::::0;4397:68:::1;;4452:1;4436:13;:17:::0;3794:678::o;571:32::-;;;;;;:::o;1839:189:12:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:12;::::1;1919:73;;;;-1:-1:-1::0;;;1919:73:12::1;;;;;;;:::i;:::-;2002:19;2012:8;2002:9;:19::i;1109:96:14:-:0;1189:12:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:12;;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;1177:9:14::1;:20:::0;1109:96::o;909:222:6:-;1011:4;-1:-1:-1;;;;;;1034:50:6;;-1:-1:-1;;;1034:50:6;;:90;;;1088:36;1112:11;1088:23;:36::i;7157:125:4:-;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;:30;;;7157:125::o;587:96:1:-;666:10;587:96;:::o;11008:171:4:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:4;-1:-1:-1;;;;;11082:29:4;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:4;;;;;;;;;;;11008:171;;:::o;773:112:2:-;864:14;;773:112::o;8114:108:4:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;891:123:2:-;978:19;;996:1;978:19;;;891:123::o;7440:344:4:-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;-1:-1:-1;;;7549:73:4;;;;;;;:::i;:::-;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:4;:7;-1:-1:-1;;;;;7689:16:4;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:4;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:4;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7681:96;7440:344;-1:-1:-1;;;;7440:344:4:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:4;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:4;;10456:85;;;;-1:-1:-1;;;10456:85:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;10559:16:4;;10551:65;;;;-1:-1:-1;;;10551:65:4;;;;;;;:::i;:::-;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:4;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:4;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:4;-1:-1:-1;;;;;10826:21:4;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;9665:348::-;9724:13;9740:23;9755:7;9740:14;:23::i;:::-;9724:39;;9774:48;9795:5;9810:1;9814:7;9774:20;:48::i;:::-;9860:29;9877:1;9881:7;9860:8;:29::i;:::-;-1:-1:-1;;;;;9900:16:4;;;;;;:9;:16;;;;;:21;;9920:1;;9900:16;:21;;9920:1;;9900:21;:::i;:::-;;;;-1:-1:-1;;9938:16:4;;;;:7;:16;;;;;;9931:23;;-1:-1:-1;;;;;;9931:23:4;;;9970:36;9946:7;;9938:16;-1:-1:-1;;;;;9970:36:4;;;;;9938:16;;9970:36;9665:348;;:::o;2012:312:0:-;2126:6;2101:21;:31;;2093:73;;;;-1:-1:-1;;;2093:73:0;;;;;;;:::i;:::-;2178:12;2196:9;-1:-1:-1;;;;;2196:14:0;2218:6;2196:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:52;;;2247:7;2239:78;;;;-1:-1:-1;;;2239:78:0;;;;;;;:::i;2034:169:12:-;2108:6;;;-1:-1:-1;;;;;2124:17:12;;;-1:-1:-1;;;;;;2124:17:12;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;6547:307:4:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:4;;;;;;;:::i;3499:108:14:-;3559:13;3592:7;3585:14;;;;;:::i;275:703:13:-;331:13;548:10;544:51;;-1:-1:-1;574:10:13;;;;;;;;;;;;-1:-1:-1;;;574:10:13;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:13;;-1:-1:-1;720:2:13;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:13;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:13;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:13;;;;;;;;-1:-1:-1;919:11:13;928:2;919:11;;:::i;:::-;;;791:150;;1431:300:4;1533:4;-1:-1:-1;;;;;;1568:40:4;;-1:-1:-1;;;1568:40:4;;:104;;-1:-1:-1;;;;;;;1624:48:4;;-1:-1:-1;;;1624:48:4;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;8443:311::-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:4;;;;;;;:::i;5001:181:14:-;5129:45;5156:4;5162:2;5166:7;5129:26;:45::i;11732:778:4:-;11882:4;11902:15;:2;-1:-1:-1;;;;;11902:13:4;;:15::i;:::-;11898:606;;;11953:2;-1:-1:-1;;;;;11937:36:4;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:4;;;;;;;;-1:-1:-1;;11937:72:4;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:4;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:4;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:4;-1:-1:-1;;;12059:51:4;;-1:-1:-1;12052:58:4;;11898:606;-1:-1:-1;12489:4:4;11732:778;;;;;;:::o;763:155:3:-;-1:-1:-1;;;;;;871:40:3;;-1:-1:-1;;;871:40:3;763:155;;;:::o;9076:372:4:-;-1:-1:-1;;;;;9155:16:4;;9147:61;;;;-1:-1:-1;;;9147:61:4;;;;;;;:::i;:::-;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;-1:-1:-1;;;9218:58:4;;;;;;;:::i;:::-;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:4;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:4;-1:-1:-1;;;;;9371:21:4;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;2543:572:6:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;-1:-1:-1;;;;;2742:18:6;;2738:183;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:6;:4;-1:-1:-1;;;;;2837:10:6;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:6;;2930:179;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;-1:-1:-1;;;;;3032:10:6;:2;-1:-1:-1;;;;;3032:10:6;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;718:377:0:-;1034:20;1080:8;;;718:377::o;3821:161:6:-;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:6;;;5069:323;;-1:-1:-1;;;;;5139:18:6;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:6;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:6;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:6;;6106:46;;6551:26;;;;-1:-1:-1;;;6551:26:6;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;-1:-1:-1;;;6588:22:6;;;;;;;;;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;-1:-1:-1;;;6895:16:6;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:15;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:15;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:15;473:16;;;470:25;-1:-1:-1;467:2:15;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:15;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:15;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:15;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:15;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:15;2244:18;;2231:32;;-1:-1:-1;2314:2:15;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:15;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:438::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:15;2911:18;;2898:32;2968:15;;2961:23;2949:36;;2939:2;;3004:6;2996;2989:22;3050:327;;;3179:2;3167:9;3158:7;3154:23;3150:32;3147:2;;;3200:6;3192;3185:22;3147:2;3244:9;3231:23;3263:33;3290:5;3263:33;:::i;:::-;3315:5;3367:2;3352:18;;;;3339:32;;-1:-1:-1;;;3137:240:15:o;3382:257::-;;3493:2;3481:9;3472:7;3468:23;3464:32;3461:2;;;3514:6;3506;3499:22;3461:2;3558:9;3545:23;3577:32;3603:5;3577:32;:::i;3644:261::-;;3766:2;3754:9;3745:7;3741:23;3737:32;3734:2;;;3787:6;3779;3772:22;3734:2;3824:9;3818:16;3843:32;3869:5;3843:32;:::i;3910:482::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4098:9;4085:23;4131:18;4123:6;4120:30;4117:2;;;4168:6;4160;4153:22;4117:2;4196:22;;4249:4;4241:13;;4237:27;-1:-1:-1;4227:2:15;;4283:6;4275;4268:22;4227:2;4311:75;4378:7;4373:2;4360:16;4355:2;4351;4347:11;4311:75;:::i;4397:190::-;;4509:2;4497:9;4488:7;4484:23;4480:32;4477:2;;;4530:6;4522;4515:22;4477:2;-1:-1:-1;4558:23:15;;4467:120;-1:-1:-1;4467:120:15:o;4592:327::-;;;4721:2;4709:9;4700:7;4696:23;4692:32;4689:2;;;4742:6;4734;4727:22;4689:2;4783:9;4770:23;4760:33;;4843:2;4832:9;4828:18;4815:32;4856:33;4883:5;4856:33;:::i;5264:259::-;;5345:5;5339:12;5372:6;5367:3;5360:19;5388:63;5444:6;5437:4;5432:3;5428:14;5421:4;5414:5;5410:16;5388:63;:::i;:::-;5505:2;5484:15;-1:-1:-1;;5480:29:15;5471:39;;;;5512:4;5467:50;;5315:208;-1:-1:-1;;5315:208:15:o;5528:470::-;;5745:6;5739:13;5761:53;5807:6;5802:3;5795:4;5787:6;5783:17;5761:53;:::i;:::-;5877:13;;5836:16;;;;5899:57;5877:13;5836:16;5933:4;5921:17;;5899:57;:::i;:::-;5972:20;;5715:283;-1:-1:-1;;;;5715:283:15:o;6003:205::-;6203:3;6194:14::o;6213:203::-;-1:-1:-1;;;;;6377:32:15;;;;6359:51;;6347:2;6332:18;;6314:102::o;6421:282::-;-1:-1:-1;;;;;6621:32:15;;;;6603:51;;6685:2;6670:18;;6663:34;6591:2;6576:18;;6558:145::o;6708:490::-;-1:-1:-1;;;;;6977:15:15;;;6959:34;;7029:15;;7024:2;7009:18;;7002:43;7076:2;7061:18;;7054:34;;;7124:3;7119:2;7104:18;;7097:31;;;6708:490;;7145:47;;7172:19;;7164:6;7145:47;:::i;:::-;7137:55;6911:287;-1:-1:-1;;;;;;6911:287:15:o;7203:187::-;7368:14;;7361:22;7343:41;;7331:2;7316:18;;7298:92::o;7395:221::-;;7544:2;7533:9;7526:21;7564:46;7606:2;7595:9;7591:18;7583:6;7564:46;:::i;7621:407::-;7823:2;7805:21;;;7862:2;7842:18;;;7835:30;7901:34;7896:2;7881:18;;7874:62;-1:-1:-1;;;7967:2:15;7952:18;;7945:41;8018:3;8003:19;;7795:233::o;8033:414::-;8235:2;8217:21;;;8274:2;8254:18;;;8247:30;8313:34;8308:2;8293:18;;8286:62;-1:-1:-1;;;8379:2:15;8364:18;;8357:48;8437:3;8422:19;;8207:240::o;8452:402::-;8654:2;8636:21;;;8693:2;8673:18;;;8666:30;8732:34;8727:2;8712:18;;8705:62;-1:-1:-1;;;8798:2:15;8783:18;;8776:36;8844:3;8829:19;;8626:228::o;8859:352::-;9061:2;9043:21;;;9100:2;9080:18;;;9073:30;9139;9134:2;9119:18;;9112:58;9202:2;9187:18;;9033:178::o;9216:401::-;9418:2;9400:21;;;9457:2;9437:18;;;9430:30;9496:34;9491:2;9476:18;;9469:62;-1:-1:-1;;;9562:2:15;9547:18;;9540:35;9607:3;9592:19;;9390:227::o;9622:400::-;9824:2;9806:21;;;9863:2;9843:18;;;9836:30;9902:34;9897:2;9882:18;;9875:62;-1:-1:-1;;;9968:2:15;9953:18;;9946:34;10012:3;9997:19;;9796:226::o;10027:349::-;10229:2;10211:21;;;10268:2;10248:18;;;10241:30;10307:27;10302:2;10287:18;;10280:55;10367:2;10352:18;;10201:175::o;10381:344::-;10583:2;10565:21;;;10622:2;10602:18;;;10595:30;-1:-1:-1;;;10656:2:15;10641:18;;10634:50;10716:2;10701:18;;10555:170::o;10730:355::-;10932:2;10914:21;;;10971:2;10951:18;;;10944:30;11010:33;11005:2;10990:18;;10983:61;11076:2;11061:18;;10904:181::o;11090:422::-;11292:2;11274:21;;;11331:2;11311:18;;;11304:30;11370:34;11365:2;11350:18;;11343:62;11441:28;11436:2;11421:18;;11414:56;11502:3;11487:19;;11264:248::o;11517:353::-;11719:2;11701:21;;;11758:2;11738:18;;;11731:30;11797:31;11792:2;11777:18;;11770:59;11861:2;11846:18;;11691:179::o;11875:408::-;12077:2;12059:21;;;12116:2;12096:18;;;12089:30;12155:34;12150:2;12135:18;;12128:62;-1:-1:-1;;;12221:2:15;12206:18;;12199:42;12273:3;12258:19;;12049:234::o;12288:353::-;12490:2;12472:21;;;12529:2;12509:18;;;12502:30;12568:31;12563:2;12548:18;;12541:59;12632:2;12617:18;;12462:179::o;12646:420::-;12848:2;12830:21;;;12887:2;12867:18;;;12860:30;12926:34;12921:2;12906:18;;12899:62;12997:26;12992:2;12977:18;;12970:54;13056:3;13041:19;;12820:246::o;13071:406::-;13273:2;13255:21;;;13312:2;13292:18;;;13285:30;13351:34;13346:2;13331:18;;13324:62;-1:-1:-1;;;13417:2:15;13402:18;;13395:40;13467:3;13452:19;;13245:232::o;13482:405::-;13684:2;13666:21;;;13723:2;13703:18;;;13696:30;13762:34;13757:2;13742:18;;13735:62;-1:-1:-1;;;13828:2:15;13813:18;;13806:39;13877:3;13862:19;;13656:231::o;13892:356::-;14094:2;14076:21;;;14113:18;;;14106:30;14172:34;14167:2;14152:18;;14145:62;14239:2;14224:18;;14066:182::o;14253:408::-;14455:2;14437:21;;;14494:2;14474:18;;;14467:30;14533:34;14528:2;14513:18;;14506:62;-1:-1:-1;;;14599:2:15;14584:18;;14577:42;14651:3;14636:19;;14427:234::o;14666:356::-;14868:2;14850:21;;;14887:18;;;14880:30;14946:34;14941:2;14926:18;;14919:62;15013:2;14998:18;;14840:182::o;15027:405::-;15229:2;15211:21;;;15268:2;15248:18;;;15241:30;15307:34;15302:2;15287:18;;15280:62;-1:-1:-1;;;15373:2:15;15358:18;;15351:39;15422:3;15407:19;;15201:231::o;15437:411::-;15639:2;15621:21;;;15678:2;15658:18;;;15651:30;15717:34;15712:2;15697:18;;15690:62;-1:-1:-1;;;15783:2:15;15768:18;;15761:45;15838:3;15823:19;;15611:237::o;15853:397::-;16055:2;16037:21;;;16094:2;16074:18;;;16067:30;16133:34;16128:2;16113:18;;16106:62;-1:-1:-1;;;16199:2:15;16184:18;;16177:31;16240:3;16225:19;;16027:223::o;16255:356::-;16457:2;16439:21;;;16476:18;;;16469:30;16535:34;16530:2;16515:18;;16508:62;16602:2;16587:18;;16429:182::o;16616:413::-;16818:2;16800:21;;;16857:2;16837:18;;;16830:30;16896:34;16891:2;16876:18;;16869:62;-1:-1:-1;;;16962:2:15;16947:18;;16940:47;17019:3;17004:19;;16790:239::o;17034:408::-;17236:2;17218:21;;;17275:2;17255:18;;;17248:30;17314:34;17309:2;17294:18;;17287:62;-1:-1:-1;;;17380:2:15;17365:18;;17358:42;17432:3;17417:19;;17208:234::o;17447:404::-;17649:2;17631:21;;;17688:2;17668:18;;;17661:30;17727:34;17722:2;17707:18;;17700:62;-1:-1:-1;;;17793:2:15;17778:18;;17771:38;17841:3;17826:19;;17621:230::o;17856:406::-;18058:2;18040:21;;;18097:2;18077:18;;;18070:30;18136:34;18131:2;18116:18;;18109:62;-1:-1:-1;;;18202:2:15;18187:18;;18180:40;18252:3;18237:19;;18030:232::o;18267:412::-;18469:2;18451:21;;;18508:2;18488:18;;;18481:30;18547:34;18542:2;18527:18;;18520:62;-1:-1:-1;;;18613:2:15;18598:18;;18591:46;18669:3;18654:19;;18441:238::o;18684:177::-;18830:25;;;18818:2;18803:18;;18785:76::o;18866:128::-;;18937:1;18933:6;18930:1;18927:13;18924:2;;;18943:18;;:::i;:::-;-1:-1:-1;18979:9:15;;18914:80::o;18999:120::-;;19065:1;19055:2;;19070:18;;:::i;:::-;-1:-1:-1;19104:9:15;;19045:74::o;19124:168::-;;19230:1;19226;19222:6;19218:14;19215:1;19212:21;19207:1;19200:9;19193:17;19189:45;19186:2;;;19237:18;;:::i;:::-;-1:-1:-1;19277:9:15;;19176:116::o;19297:125::-;;19365:1;19362;19359:8;19356:2;;;19370:18;;:::i;:::-;-1:-1:-1;19407:9:15;;19346:76::o;19427:258::-;19499:1;19509:113;19523:6;19520:1;19517:13;19509:113;;;19599:11;;;19593:18;19580:11;;;19573:39;19545:2;19538:10;19509:113;;;19640:6;19637:1;19634:13;19631:2;;;-1:-1:-1;;19675:1:15;19657:16;;19650:27;19480:205::o;19690:380::-;19775:1;19765:12;;19822:1;19812:12;;;19833:2;;19887:4;19879:6;19875:17;19865:27;;19833:2;19940;19932:6;19929:14;19909:18;19906:38;19903:2;;;19986:10;19981:3;19977:20;19974:1;19967:31;20021:4;20018:1;20011:15;20049:4;20046:1;20039:15;19903:2;;19745:325;;;:::o;20075:135::-;;-1:-1:-1;;20135:17:15;;20132:2;;;20155:18;;:::i;:::-;-1:-1:-1;20202:1:15;20191:13;;20122:88::o;20215:112::-;;20273:1;20263:2;;20278:18;;:::i;:::-;-1:-1:-1;20312:9:15;;20253:74::o;20332:127::-;20393:10;20388:3;20384:20;20381:1;20374:31;20424:4;20421:1;20414:15;20448:4;20445:1;20438:15;20464:127;20525:10;20520:3;20516:20;20513:1;20506:31;20556:4;20553:1;20546:15;20580:4;20577:1;20570:15;20596:127;20657:10;20652:3;20648:20;20645:1;20638:31;20688:4;20685:1;20678:15;20712:4;20709:1;20702:15;20728:133;-1:-1:-1;;;;;20805:31:15;;20795:42;;20785:2;;20851:1;20848;20841:12;20866:133;-1:-1:-1;;;;;;20942:32:15;;20932:43;;20922:2;;20989:1;20986;20979:12

Swarm Source

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