ETH Price: $3,494.76 (+0.21%)
Gas: 2 Gwei

Token

Thorgi (THORGI)
 

Overview

Max Total Supply

51,423,041.321178819217018384 THORGI

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
921.498124999996790412 THORGI

Value
$0.00
0x5f7a834b77b519c5148456cfd9caa0d485e8d0c6
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:
Thorgi

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 2 of 22 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 22 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 22 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 5 of 22 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 22 : 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 9 of 22 : 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 10 of 22 : 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 11 of 22 : 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 12 of 22 : 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 16 of 22 : 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 17 of 22 : 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 18 of 22 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 19 of 22 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 20 of 22 : approving-bone.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./approving-corgis.sol";

contract ApprovingBone is ERC721Enumerable, Ownable {
    using SafeMath for uint256;

    string public baseURI;
    uint256 public maxBones = 450;
    bool public boneMintActive = true;

    mapping (address => bool) public earlyAccessAddresses;
    mapping(address => uint256) addressBlockBought;

    address public creator;

    constructor(address owner) ERC721("Approving Bone", "ACBONE")  {
        transferOwnership(owner);
        // setBaseURI for metadata
        setBaseURI('https://bone-api.approvingcorgis.com/api/token/');
        creator = msg.sender;
    }

    /**
     * mint Bones
     */
    function mintBone() public {
        uint256 supply = totalSupply();

        require(addressBlockBought[msg.sender] < block.timestamp, "Not allowed to Mint on the same Block");
        require(!Address.isContract(msg.sender),"Contracts are not allowed to mint");
        require(boneMintActive, "Minting Approving Bone Is Not Yet Active");
        require(isAddressReserved(msg.sender), "You need to be whitelisted");
        require(supply <= maxBones, "Exceeds maximum Corgis supply" );

        addressBlockBought[msg.sender] = block.timestamp;
        _safeMint( msg.sender, supply + 1 );

        delete earlyAccessAddresses[msg.sender];
    }

    /**
     * mint Bones
     */
    function mintSpecialBones(uint256 _numberOfTokens) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply <= maxBones, "Exceeds maximum Bones supply" );

        for(uint256 i; i < _numberOfTokens; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    /**
     * Returns Bones of the Caller
     */
    function bonesOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function isAddressReserved(address _ogAddress) internal view returns(bool) {
        return earlyAccessAddresses[_ogAddress];
    }

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

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

    function toggleBoneMintActive() public onlyOwner {
        boneMintActive = !boneMintActive;
    }

    function changeMaxBones(uint256 _maxBones) public onlyOwner {
        maxBones = _maxBones;
    }

    function addReservationAddress(address _ogAddress) public onlyOwner {
        earlyAccessAddresses[_ogAddress] = true;
    }

    function addMultipleAddresses(address[] memory _ogAddress) public onlyOwner {
        for (uint256 i = 0; i < _ogAddress.length; i++) {
            earlyAccessAddresses[_ogAddress[i]] = true;
        }
    }
}

File 21 of 22 : approving-corgis.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./approving-bone.sol";

contract ApprovingCorgis is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string public baseURI;
    uint256 public team = 10;
    uint256 public custom = 30;
    uint256 public giveaway = 60;
    uint256 public constant price = 0.05 ether;
    uint8 public constant maxEarlyAccessPurchase = 5;
    uint8 public constant maxPublicPurchase = 10;
    uint256 public maxEarlyAccess = 2000;
    uint256 public maxCorgis = 9999;
    bool public corgiSaleIsActive = false;
    bool public earlyAccessIsActive = false;

    uint256 public donationToCharity = 20 ether;
    uint256 public sendToCommunityVault = 30 ether;

    address public communityVault = 0xcCa72c0C787df0293e126EA1Ade1B6936e000204;
    address public charityFundWallet = 0xC5816243E05851E8d838cf2a56dfcC1e5a0F8132;

    mapping (uint256 => uint256) public numberOfCorgisMintedPerBone;
    mapping(address => uint256) addressBlockBought;

    ApprovingBone public approvingBoneContract;

    constructor(string memory tokenBaseUri, address boneContractAddress) ERC721("Approving Corgis", "ACORGIS")  {
        // setBaseURI for metadata
        setBaseURI(tokenBaseUri);
        mintTeamCorgis();
        approvingBoneContract = ApprovingBone(boneContractAddress);
    }

    /**
     * Mint reserved Corgis
     */
    function mintTeamCorgis() public onlyOwner {        
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < team; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    /**
     * mint Early Access Corgis
     */

    function earlyAccessMint(uint256 boneTokenId, uint256 numberOfTokens) public payable {
        uint256 supply = totalSupply();
        uint256 boneCount = approvingBoneContract.balanceOf(msg.sender);
        uint256 corgiPerBoneCount = numberOfCorgisMintedPerBone[boneTokenId];
        bool bonesOfOwner = findBonesOfOwner(msg.sender, boneTokenId, boneCount);

        require(addressBlockBought[msg.sender] < block.timestamp, "Not allowed to Mint on the same Block");
        require(!Address.isContract(msg.sender),"Contracts are not allowed to mint");
        require(bonesOfOwner,"You do not own this bone");
        require(corgiPerBoneCount + numberOfTokens < 6,"You cannot mint more than 5 Corgis per Bone");
        require(earlyAccessIsActive, "Early Access Mint is not active yet");
        require(boneCount > 0, "You don't have a mint pass");
        require(msg.value >= price * numberOfTokens, "Payment is Insufficient");
        require(supply + numberOfTokens <= maxEarlyAccess, "Exceeds maximum Corgis early access supply" );

        addressBlockBought[msg.sender] = block.timestamp;
        for(uint256 i; i < numberOfTokens; i++){
            _safeMint( msg.sender, supply + i );
        }

        numberOfCorgisMintedPerBone[boneTokenId] = numberOfCorgisMintedPerBone[boneTokenId].add(numberOfTokens);
    }

    /**
     * mint Corgis
     */
    function mintCorgis(uint256 numberOfTokens) public payable {
        uint256 supply = totalSupply();

        require(addressBlockBought[msg.sender] < block.timestamp, "Not allowed to Mint on the same Block");
        require(!Address.isContract(msg.sender),"Contracts are not allowed to mint");
        require(corgiSaleIsActive, "Sale is not active yet");
        require(msg.value >= price * numberOfTokens, "Payment is Insufficient");
        require(numberOfTokens <= maxPublicPurchase, "You can adopt a maximum of 10 Corgis");
        require(supply + numberOfTokens <= maxCorgis, "Exceeds maximum Corgis supply" );

        addressBlockBought[msg.sender] = block.timestamp;

        for(uint256 i; i < numberOfTokens; i++){
            _safeMint( msg.sender, supply + i );

            if (totalSupply() == 6500) {
                // send to charity fund
                sendToCommunityAndCharityWallets(charityFundWallet, donationToCharity);
            } else if (totalSupply() == 9000) {
                // send to community vault
                sendToCommunityAndCharityWallets(communityVault, sendToCommunityVault);
            }
        }
    }

    /**
     * reserve Corgis for giveaways
     */
    function mintCorgisForGiveaway() public onlyOwner {
        uint256 supply = totalSupply();
        require(giveaway > 0, "Giveaway has been minted!");

        for (uint256 i = 0; i < custom + giveaway; i++) {
            _safeMint(msg.sender, supply + i);
        }

        giveaway -= giveaway;
    }

    /**
     * check if bone can still be used
     */
    function checkBoneBalance(uint256 boneId) public view returns(uint256) {
        return numberOfCorgisMintedPerBone[boneId];
    }

    function findBonesOfOwner(address _owner, uint256 tokenId, uint256 tokenCount) internal view returns(bool) {
        bool isBone = false;

        for(uint256 i; i < tokenCount; i++){
            uint256 tokensId = approvingBoneContract.tokenOfOwnerByIndex(_owner, i);
            if(tokensId == tokenId) {
                return true;
            } 
        }

        return isBone;
    }

    /**
     * Returns Corgis of the Caller
     */
    function corgisOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

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

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

    function toggleSaleActive() public onlyOwner {
        corgiSaleIsActive = !corgiSaleIsActive;
    }

    function toggleEarlyAccessActive() public onlyOwner {
        earlyAccessIsActive = !earlyAccessIsActive;
    }

    function setCommunityVault(address communityVaultAddress) public onlyOwner {
        communityVault = communityVaultAddress;
    }

    function setCharityFund(address charityFundAddress) public onlyOwner {
        charityFundWallet = charityFundAddress;
    }
    
    function approvingBoneContractAddress() public view returns (address) {
        return address(approvingBoneContract);
    }

    /**
     * Withdraw Ether
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");

        (bool success, ) = msg.sender.call{value: balance}("");
        require(success, "Failed to withdraw payment");
    }

    /**
     * Send to Community and Charity Wallets
     */
    function sendToCommunityAndCharityWallets(address _address, uint256 amount) private {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");

        (bool sendToWalletSuccess, ) = _address.call{value: amount}("");
        require(sendToWalletSuccess, "Failed to send wallets");
    }
}

File 22 of 22 : thorgi.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./approving-bone.sol";
import "./approving-corgis.sol";
import "./ERC721A.sol";

contract Thorgi is ERC20Burnable, Ownable {
    bool public corgiStakingLive = false;
    bool public boneStakingLive = false;
    bool public pupStakingLive = false;
    bool public airdropLive = false;
    uint256 public _maxSupply = 100000000 * 10**18;
    uint256 public _initialSupply = 50000000 * 10**18;

    uint256 public constant pupRatePerDay = 11574074074074; // 1 $THORGI per day for staked pups
    uint256 public constant corgiRatePerDay = 34722222222222; // 3 $THORGI per day for staked corgis

    mapping(uint256 => uint256) internal corgTimeStaked;
    mapping(uint256 => address) internal corgiOwner;
    mapping(address => uint256[]) internal corgiTokenIds;

    mapping(uint256 => uint256) internal pupTimeStaked;
    mapping(uint256 => address) internal pupOwner;
    mapping(address => uint256[]) internal pupTokenIds;

    mapping(uint256 => address) internal boneOwner;
    mapping(address => uint256[]) internal boneTokenIds;

    mapping(address => bool) public claimedAirdrop;
    mapping(address => uint256) addressBlockBought;
    address signer;

    IERC721Enumerable private corgiIERC721Enumerable;
    IERC721Enumerable private pupContract;
    IERC721Enumerable private boneIERC721Enumerable;
    constructor(
        address _signer,
        address _corgi,
        address _bone) ERC20("Thorgi", "THORGI") {
        signer = _signer;
        corgiIERC721Enumerable = IERC721Enumerable(_corgi);
        boneIERC721Enumerable = IERC721Enumerable(_bone);
        _mint(msg.sender, _initialSupply);
    }

    modifier isSecured(uint8 mintType) {
        require(addressBlockBought[msg.sender] < block.timestamp, "CANNOT_TRANSACT_THE_SAME_BLOCK");
        require(tx.origin == msg.sender,"CONTRACTS_NOT_ALLOWED_TO_MINT");

        if(mintType == 1) {
            require(corgiStakingLive, "CORGI_STAKING_IS_NOT_YET_ACTIVE");
        }
        if(mintType == 2) {
            require(boneStakingLive, "BONE_STAKING_IS_NOT_YET_ACTIVE");
        }
        if(mintType == 3) {
            require(pupStakingLive, "PUP_STAKING_IS_NOT_YET_ACTIVE");
        }

        if(mintType == 4) {
            require(airdropLive, "CLAIMING_IS_NOT_YET_ACTIVE");
        }
        _;
    }

    function getStakedCorgi(address _owner) public view returns (uint256[] memory) {
        return corgiTokenIds[_owner];
    }

    function getStakedPup(address _owner) public view returns (uint256[] memory) {
        return pupTokenIds[_owner];
    }

    function getStakedBone(address _owner) public view returns (uint256[] memory) {
        return boneTokenIds[_owner];
    }

    function getCorgiOwner(uint256 tokenId) public view returns (address) {
        return corgiOwner[tokenId];
    }
    
    function getPupOwner(uint256 tokenId) public view returns (address) {
        return pupOwner[tokenId];
    }
    
    function getBoneOwner(uint256 tokenId) public view returns (address) {
        return boneOwner[tokenId];
    }

    function toggleCorgiStaking() external onlyOwner {
        corgiStakingLive = !corgiStakingLive;
    }

    function toggleBoneStaking() external onlyOwner {
        boneStakingLive = !boneStakingLive;
    }

    function togglePupStaking() external onlyOwner {
        pupStakingLive = !pupStakingLive;
    }

    function toggleAirdrop() external onlyOwner {
        airdropLive = !airdropLive;
    }

    function removeTokenIdFromArray(uint256[] storage array, uint256 tokenId) internal {
        uint256 length = array.length;
        for (uint256 i = 0; i < length; i++) {
            if (array[i] == tokenId) {
                length--;
                if (i < length) {
                    array[i] = array[length];
                }
                array.pop();
                break;
            }
        }
    }

    // STAKING FUNCTIONS
    function stakeCorgis(uint256[] memory tokenIds) external isSecured(1) {
        require(totalSupply() <= _maxSupply, "NO_MORE_MINTABLE_SUPPLY");
        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 id = tokenIds[i];
            require(corgiIERC721Enumerable.ownerOf(id) == msg.sender && corgiOwner[id] == address(0), "TOKEN_IS_NOT_YOURS");
            corgiIERC721Enumerable.transferFrom(msg.sender, address(this), id);

            corgiTokenIds[msg.sender].push(id);
            corgTimeStaked[id] = block.timestamp;
            corgiOwner[id] = msg.sender;
            addressBlockBought[msg.sender] = block.timestamp;
        }
    }

    function stakePups(uint256[] memory tokenIds) external isSecured(3) {
        require(totalSupply() <= _maxSupply, "NO_MORE_MINTABLE_SUPPLY");
        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 id = tokenIds[i];
            require(pupContract.ownerOf(id) == msg.sender && pupOwner[id] == address(0), "TOKEN_IS_NOT_YOURS");
            pupContract.transferFrom(msg.sender, address(this), id);

            pupTokenIds[msg.sender].push(id);
            pupTimeStaked[id] = block.timestamp;
            pupOwner[id] = msg.sender;
            addressBlockBought[msg.sender] = block.timestamp;
        }
    }

    function stakeBones(uint256 tokenId) external isSecured(2) {
        require(totalSupply() <= _maxSupply, "NO_MORE_MINTABLE_SUPPLY");
        require(boneTokenIds[msg.sender].length < 1, "You can only stake 1 bone");
        require(boneIERC721Enumerable.ownerOf(tokenId) == msg.sender && boneOwner[tokenId] == address(0), "TOKEN_IS_NOT_YOURS");
        boneIERC721Enumerable.transferFrom(msg.sender, address(this), tokenId);

        boneTokenIds[msg.sender].push(tokenId);
        boneOwner[tokenId] = msg.sender;
        addressBlockBought[msg.sender] = block.timestamp;
    }

    // UNSTAKE FUNCTIONS
    function unstakeCorgis(uint256[] memory tokenIds) public {
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(msg.sender);

        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 id = tokenIds[i];
            require(corgiOwner[id] == msg.sender, "Not Owner");

            corgiIERC721Enumerable.transferFrom(address(this), msg.sender, id);
            if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - corgTimeStaked[id]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - corgTimeStaked[id]) * corgiRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else {
                totalRewards += ((block.timestamp - corgTimeStaked[id]) * corgiRatePerDay);
            }

            removeTokenIdFromArray(corgiTokenIds[msg.sender], id);
            corgiOwner[id] = address(0);
        }
        if(totalSupply() <= _maxSupply) {
            _mint(msg.sender, totalRewards);
        }
    }

    function unstakePups(uint256[] memory tokenIds) public {
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(msg.sender);

        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 id = tokenIds[i];
            require(pupOwner[id] == msg.sender, "Not Owner");

            pupContract.transferFrom(address(this), msg.sender, id);

            if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - pupTimeStaked[id]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - pupTimeStaked[id]) * pupRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else {
                totalRewards += ((block.timestamp - pupTimeStaked[id]) * pupRatePerDay);
            }

            removeTokenIdFromArray(pupTokenIds[msg.sender], id);
            pupOwner[id] = address(0);
        }

        if(totalSupply() <= _maxSupply) {
            _mint(msg.sender, totalRewards);
        }
    }

    function unstakeBones(uint256 tokenIds) public {
        require(boneOwner[tokenIds] == msg.sender, "Not Owner");

        boneIERC721Enumerable.transferFrom(address(this), msg.sender, tokenIds);

        removeTokenIdFromArray(boneTokenIds[msg.sender], tokenIds);
        boneOwner[tokenIds] = address(0);
    }

    function unstakeAll() external {
        uint256[] memory pupIds = pupTokenIds[msg.sender];
        uint256[] memory corgiIds = corgiTokenIds[msg.sender];
        uint256[] memory boneId = boneTokenIds[msg.sender];

        unstakeCorgis(corgiIds);
        unstakePups(pupIds);
        unstakeBones(boneId[0]);
    }

    // CLAIM FUNCTIONS
    function claimFromCorgi() public {
        require(corgiTokenIds[msg.sender].length > 0, "NO_STAKED_CORGI");
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(msg.sender);

        uint256[] memory corgiTokens = corgiTokenIds[msg.sender];
        for (uint256 i = 0; i < corgiTokens.length; i++) {
            uint256 id = corgiTokens[i];
            require(corgiOwner[id] == msg.sender, "You are not the owner");
            if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - corgTimeStaked[id]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - corgTimeStaked[id]) * corgiRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else { 
                totalRewards += ((block.timestamp - corgTimeStaked[id]) * corgiRatePerDay);
            }
            corgTimeStaked[id] = block.timestamp;
        }

        _mint(msg.sender, totalRewards);
    }
    
    function claimFromPup() public {
        require(pupTokenIds[msg.sender].length > 0, "NO_STAKED_CORGI");
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(msg.sender);

        uint256[] memory pupTokens = pupTokenIds[msg.sender];
        for (uint256 i = 0; i < pupTokens.length; i++) {
            uint256 id = pupTokens[i];
            require(pupOwner[id] == msg.sender, "You are not the owner");
            if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - pupTimeStaked[id]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - pupTimeStaked[id]) * pupRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else { 
                totalRewards += ((block.timestamp - pupTimeStaked[id]) * pupRatePerDay);
            }
            pupTimeStaked[id] = block.timestamp;
        }

        _mint(msg.sender, totalRewards);
    }

    function claimAll() external {
        if(pupTokenIds[msg.sender].length > 0) {
            claimFromPup();
        }

        if(corgiTokenIds[msg.sender].length > 0) {
            claimFromCorgi();
        }
    }

    // CHECKERS

    function checkRewardsbyCorgiIds(uint256 tokenId) external view returns (uint256) {
        require(corgiOwner[tokenId] != address(0), "TOKEN_NOT_BURIED");
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(msg.sender);

        if(stakedBone.length > 0) {
            uint256 numOfDays = ((block.timestamp - corgTimeStaked[tokenId]) / 1 days) * 1e18;
            uint256 reward = ((block.timestamp - corgTimeStaked[tokenId]) * corgiRatePerDay);
            uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
            totalRewards += (reward * multiplier) / 1e18;
        } else { 
            totalRewards += ((block.timestamp - corgTimeStaked[tokenId]) * corgiRatePerDay);
        }

        return totalRewards;
    }

    function checkRewardsPupsIds(uint256 tokenId) external view returns (uint256) {
        require(pupOwner[tokenId] != address(0), "TOKEN_NOT_BURIED");
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(msg.sender);

        if(stakedBone.length > 0) {
            uint256 numOfDays = ((block.timestamp - pupTimeStaked[tokenId]) / 1 days) * 1e18;
            uint256 reward = ((block.timestamp - pupTimeStaked[tokenId]) * pupRatePerDay);
            uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
            totalRewards += (reward * multiplier) / 1e18;
        } else { 
            totalRewards += ((block.timestamp - pupTimeStaked[tokenId]) * pupRatePerDay);
        }
        return totalRewards;
    }

    function checkAllRewardsFromCorgis(address _owner) external view returns (uint256) {
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(_owner);
        uint256[] memory corgis = corgiTokenIds[_owner];

        for (uint256 i = 0; i < corgis.length; i++) {
            if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - corgTimeStaked[corgis[i]]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - corgTimeStaked[corgis[i]]) * corgiRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else { 
                totalRewards += ((block.timestamp - corgTimeStaked[corgis[i]]) * corgiRatePerDay);
            }
        }

        return totalRewards;
    }
    

    function checkAllRewardsFromPups(address _owner) external view returns (uint256) {
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(_owner);
        uint256[] memory pups = pupTokenIds[_owner];

        for (uint256 i = 0; i < pups.length; i++) {
            if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - pupTimeStaked[pups[i]]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - pupTimeStaked[pups[i]]) * pupRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else { 
                totalRewards += ((block.timestamp - pupTimeStaked[pups[i]]) * pupRatePerDay);
            }
        }

        return totalRewards;
    }

    function checkAllRewards(address _owner) external view returns (uint256) {
        uint256 totalRewards = 0;
        uint256[] memory stakedBone = getStakedBone(_owner);

        uint256[] memory corgis = corgiTokenIds[_owner];
        for (uint256 i = 0; i < corgis.length; i++) {
            if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - corgTimeStaked[corgis[i]]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - corgTimeStaked[corgis[i]]) * corgiRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else { 
                totalRewards += ((block.timestamp - corgTimeStaked[corgis[i]]) * corgiRatePerDay);
            }
        }
        
        uint256[] memory pupTokens = pupTokenIds[_owner];
        for (uint256 i = 0; i < pupTokens.length; i++) {
             if(stakedBone.length > 0) {
                uint256 numOfDays = ((block.timestamp - pupTimeStaked[pupTokens[i]]) / 1 days) * 1e18;
                uint256 reward = ((block.timestamp - pupTimeStaked[pupTokens[i]]) * pupRatePerDay);
                uint256 multiplier = 1e18 + (numOfDays * 150 / 10000);
                totalRewards += (reward * multiplier) / 1e18;
            } else { 
                totalRewards += ((block.timestamp - pupTimeStaked[pupTokens[i]]) * pupRatePerDay);
            }
        }

        return totalRewards;
    }

    // AIRDROP

    function airDrop(uint256 amount, uint64 expireTime, bytes memory sig) external isSecured(4) {
        bytes32 digest = keccak256(abi.encodePacked(msg.sender, amount, expireTime));
        require(isAuthorized(sig, digest),"NOT_ELIGIBLE_FOR_AIRDROP");
        require(amount <= _maxSupply, "AMOUNT_SHOULD_BE_LESS_THAN_SUPPLY");
        require(totalSupply() <= _maxSupply, "NO_MORE_MINTABLE_SUPPLY");
        require(!claimedAirdrop[msg.sender], "ALREADY_CLAIMED");

        addressBlockBought[msg.sender] = block.timestamp;
        claimedAirdrop[msg.sender] = true;
        _mint(msg.sender, amount * 1e18);
    }

    // SETTERS

    function setSigner(address _signer) external onlyOwner{
        signer = _signer;
    }

    function setPupContract(address _pupContractAddress) external onlyOwner{
        pupContract = ERC721A(_pupContractAddress);
    }

    function setCorgiContract(address _corgiContractAddress) external onlyOwner{
        corgiIERC721Enumerable = IERC721Enumerable(_corgiContractAddress);
    }

    function setBoneContract(address _boneContractAddress) external onlyOwner{
        boneIERC721Enumerable = IERC721Enumerable(_boneContractAddress);
    }

    function isAuthorized(bytes memory sig, bytes32 digest) private view returns (bool) {
        return ECDSA.recover(digest, sig) == signer;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"_corgi","type":"address"},{"internalType":"address","name":"_bone","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint64","name":"expireTime","type":"uint64"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boneStakingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"checkAllRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"checkAllRewardsFromCorgis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"checkAllRewardsFromPups","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkRewardsPupsIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkRewardsbyCorgiIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimFromCorgi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimFromPup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAirdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"corgiRatePerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"corgiStakingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBoneOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCorgiOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPupOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getStakedBone","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getStakedCorgi","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getStakedPup","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"pupRatePerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pupStakingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_boneContractAddress","type":"address"}],"name":"setBoneContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_corgiContractAddress","type":"address"}],"name":"setCorgiContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pupContractAddress","type":"address"}],"name":"setPupContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stakeBones","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakeCorgis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakePups","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleBoneStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleCorgiStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePupStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstakeAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIds","type":"uint256"}],"name":"unstakeBones","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstakeCorgis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstakePups","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005805463ffffffff60a01b191690556a52b7d2dcc80cd2e40000006006556a295be96e640669720000006007553480156200003f57600080fd5b506040516200452738038062004527833981016040819052620000629162000293565b6040518060400160405280600681526020016554686f72676960d01b8152506040518060400160405280600681526020016554484f52474960d01b8152508160039081620000b1919062000381565b506004620000c0828262000381565b505050620000dd620000d76200013360201b60201c565b62000137565b601280546001600160a01b038086166001600160a01b0319928316179092556013805485841690831617905560158054928416929091169190911790556007546200012a90339062000189565b50505062000474565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001e45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001f891906200044d565b90915550506001600160a01b03821660009081526020819052604081208054839290620002279084906200044d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b80516001600160a01b03811681146200028e57600080fd5b919050565b600080600060608486031215620002a957600080fd5b620002b48462000276565b9250620002c46020850162000276565b9150620002d46040850162000276565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030857607f821691505b6020821081036200032957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027157600081815260208120601f850160051c81016020861015620003585750805b601f850160051c820191505b81811015620003795782815560010162000364565b505050505050565b81516001600160401b038111156200039d576200039d620002dd565b620003b581620003ae8454620002f3565b846200032f565b602080601f831160018114620003ed5760008415620003d45750858301515b600019600386901b1c1916600185901b17855562000379565b600085815260208120601f198616915b828110156200041e57888601518255948401946001909101908401620003fd565b50858210156200043d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200046f57634e487b7160e01b600052601160045260246000fd5b500190565b6140a380620004846000396000f3fe608060405234801561001057600080fd5b506004361061035d5760003560e01c80636b244ccb116101d3578063a8dbc6c911610104578063dd62ed3e116100a2578063eb56638f1161007c578063eb56638f1461077f578063eca335ef14610792578063f1c8266d1461079a578063f2fde38b146107a757600080fd5b8063dd62ed3e1461072b578063de58046114610764578063e9a6d4231461076c57600080fd5b8063ad7963a0116100de578063ad7963a0146106ff578063b9c169d714610707578063c3b2d3371461071a578063d1058e591461072357600080fd5b8063a8dbc6c9146106c5578063a9059cbb146106d8578063ad701ff7146106eb57600080fd5b806379cc67901161017157806395d89b411161014b57806395d89b411461066d5780639ba62e7f146106755780639ead063014610689578063a457c2d7146106b257600080fd5b806379cc67901461063657806384c2f831146106495780638da5cb5b1461065c57600080fd5b8063715018a6116101ad578063715018a6146105df57806372455c95146105e7578063771af968146105fa5780637793b2181461060d57600080fd5b80636b244ccb146105905780636c19e783146105a357806370a08231146105b657600080fd5b806323b872dd116102ad57806346cf5f2a1161024b5780635b9ca873116102255780635b9ca8731461055557806367929a4e146105625780636842708b14610575578063693f44541461057d57600080fd5b806346cf5f2a1461051c57806354c70b651461052f57806358796a531461054257600080fd5b806335322f371161028757806335322f37146104db578063392f8057146104e357806339509351146104f657806342966c681461050957600080fd5b806323b872dd146104995780632b049ec9146104ac578063313ce567146104cc57600080fd5b80630bd615361161031a5780631b93f66d116102f45780631b93f66d146104465780631c6e510414610469578063208bfe1c1461047d57806322f4596f1461049057600080fd5b80630bd61536146104235780630cfa55141461042b57806318160ddd1461043e57600080fd5b806306fdde0314610362578063077cd1371461038057806307e56adf146103c157806308666b04146103e257806309355de414610406578063095ea7b314610410575b600080fd5b61036a6107ba565b60405161037791906139d5565b60405180910390f35b6103a961038e366004613a2a565b6000908152600960205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610377565b6103d46103cf366004613a2a565b61084c565b604051908152602001610377565b6005546103f690600160a01b900460ff1681565b6040519015158152602001610377565b61040e6109c7565b005b6103f661041e366004613a58565b610c4c565b61040e610c63565b61040e610439366004613a2a565b610cae565b6002546103d4565b6103f6610454366004613a84565b60106020526000908152604090205460ff1681565b6005546103f690600160a81b900460ff1681565b61040e61048b366004613aef565b610d82565b6103d460065481565b6103f66104a7366004613b95565b610fc5565b6104bf6104ba366004613a84565b61106f565b6040516103779190613bd6565b60405160128152602001610377565b61040e6110db565b61040e6104f1366004613aef565b611232565b6103f6610504366004613a58565b61145f565b61040e610517366004613a2a565b61149b565b6104bf61052a366004613a84565b6114a8565b6103d461053d366004613a84565b611512565b61040e610550366004613aef565b611716565b6103d4650a86cc92e3da81565b61040e610570366004613a84565b611a10565b61040e611a5c565b61040e61058b366004613aef565b611aa7565b6103d461059e366004613a84565b611da1565b61040e6105b1366004613a84565b611f9b565b6103d46105c4366004613a84565b6001600160a01b031660009081526020819052604090205490565b61040e611fe7565b61040e6105f5366004613a84565b61201d565b6103d4610608366004613a2a565b612069565b6103a961061b366004613a2a565b6000908152600c60205260409020546001600160a01b031690565b61040e610644366004613a58565b612156565b6104bf610657366004613a84565b6121d7565b6005546001600160a01b03166103a9565b61036a612241565b6005546103f690600160b81b900460ff1681565b6103a9610697366004613a2a565b6000908152600e60205260409020546001600160a01b031690565b6103f66106c0366004613a58565b612250565b61040e6106d3366004613a2a565b6122e9565b6103f66106e6366004613a58565b6125f6565b6005546103f690600160b01b900460ff1681565b61040e612603565b6103d4610715366004613a84565b61264e565b6103d460075481565b61040e612a3e565b6103d4610739366004613c1a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61040e612a78565b61040e61077a366004613c53565b612ac3565b61040e61078d366004613a84565b612da8565b61040e612df4565b6103d4651f9465b8ab8e81565b61040e6107b5366004613a84565b613069565b6060600380546107c990613d0b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590613d0b565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000818152600960205260408120546001600160a01b03166108a85760405162461bcd60e51b815260206004820152601060248201526f1513d2d15397d393d517d0955492515160821b60448201526064015b60405180910390fd5b6000806108b4336121d7565b8051909150156109885760008481526008602052604081205462015180906108dc9042613d5b565b6108e69190613d72565b6108f890670de0b6b3a7640000613d94565b60008681526008602052604081205491925090651f9465b8ab8e9061091d9042613d5b565b6109279190613d94565b90506000612710610939846096613d94565b6109439190613d72565b61095590670de0b6b3a7640000613db3565b9050670de0b6b3a764000061096a8284613d94565b6109749190613d72565b61097e9086613db3565b94505050506109c0565b600084815260086020526040902054651f9465b8ab8e906109a99042613d5b565b6109b39190613d94565b6109bd9083613db3565b91505b5092915050565b336000908152600d6020526040902054610a155760405162461bcd60e51b815260206004820152600f60248201526e4e4f5f5354414b45445f434f52474960881b604482015260640161089f565b600080610a21336121d7565b336000908152600d6020908152604080832080548251818502810185019093528083529495509293909291830182828015610a7b57602002820191906000526020600020905b815481526020019060010190808311610a67575b5050505050905060005b8151811015610c3c576000828281518110610aa257610aa2613dcb565b6020908102919091018101516000818152600c9092526040909120549091506001600160a01b03163314610b105760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015260640161089f565b835115610be1576000818152600b60205260408120546201518090610b359042613d5b565b610b3f9190613d72565b610b5190670de0b6b3a7640000613d94565b6000838152600b602052604081205491925090650a86cc92e3da90610b769042613d5b565b610b809190613d94565b90506000612710610b92846096613d94565b610b9c9190613d72565b610bae90670de0b6b3a7640000613db3565b9050670de0b6b3a7640000610bc38284613d94565b610bcd9190613d72565b610bd79089613db3565b9750505050610c19565b6000818152600b6020526040902054650a86cc92e3da90610c029042613d5b565b610c0c9190613d94565b610c169086613db3565b94505b6000908152600b6020526040902042905580610c3481613de1565b915050610a85565b50610c473384613101565b505050565b6000610c593384846131e0565b5060015b92915050565b6005546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6000818152600e60205260409020546001600160a01b03163314610ce45760405162461bcd60e51b815260040161089f90613e2f565b6015546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90610d1890309033908690600401613e52565b600060405180830381600087803b158015610d3257600080fd5b505af1158015610d46573d6000803e3d6000fd5b5050336000908152600f60205260409020610d649250905082613304565b6000908152600e6020526040902080546001600160a01b0319169055565b600080610d8e336121d7565b905060005b8351811015610faf576000848281518110610db057610db0613dcb565b6020908102919091018101516000818152600c9092526040909120549091506001600160a01b03163314610df65760405162461bcd60e51b815260040161089f90613e2f565b6014546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90610e2a90309033908690600401613e52565b600060405180830381600087803b158015610e4457600080fd5b505af1158015610e58573d6000803e3d6000fd5b50505050600083511115610f30576000818152600b60205260408120546201518090610e849042613d5b565b610e8e9190613d72565b610ea090670de0b6b3a7640000613d94565b6000838152600b602052604081205491925090650a86cc92e3da90610ec59042613d5b565b610ecf9190613d94565b90506000612710610ee1846096613d94565b610eeb9190613d72565b610efd90670de0b6b3a7640000613db3565b9050670de0b6b3a7640000610f128284613d94565b610f1c9190613d72565b610f269088613db3565b9650505050610f68565b6000818152600b6020526040902054650a86cc92e3da90610f519042613d5b565b610f5b9190613d94565b610f659085613db3565b93505b336000908152600d60205260409020610f819082613304565b6000908152600c6020526040902080546001600160a01b031916905580610fa781613de1565b915050610d93565b5060065460025411610c4757610c473383613101565b6000610fd28484846133c8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156110575760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161089f565b61106485338584036131e0565b506001949350505050565b6001600160a01b0381166000908152600a60209081526040918290208054835181840281018401909452808452606093928301828280156110cf57602002820191906000526020600020905b8154815260200190600101908083116110bb575b50505050509050919050565b336000908152600d602090815260408083208054825181850281018501909352808352919290919083018282801561113257602002820191906000526020600020905b81548152602001906001019080831161111e575b5050336000908152600a602090815260408083208054825181850281018501909352808352979850929690955091935090915083018282801561119457602002820191906000526020600020905b815481526020019060010190808311611180575b5050336000908152600f60209081526040808320805482518185028101850190935280835297985092969095509193509091508301828280156111f657602002820191906000526020600020905b8154815260200190600101908083116111e2575b5050505050905061120682611232565b61120f83610d82565b610c478160008151811061122557611225613dcb565b6020026020010151610cae565b60008061123e336121d7565b905060005b8351811015610faf57600084828151811061126057611260613dcb565b602090810291909101810151600081815260099092526040909120549091506001600160a01b031633146112a65760405162461bcd60e51b815260040161089f90613e2f565b6013546040516323b872dd60e01b81526001600160a01b03909116906323b872dd906112da90309033908690600401613e52565b600060405180830381600087803b1580156112f457600080fd5b505af1158015611308573d6000803e3d6000fd5b505050506000835111156113e05760008181526008602052604081205462015180906113349042613d5b565b61133e9190613d72565b61135090670de0b6b3a7640000613d94565b60008381526008602052604081205491925090651f9465b8ab8e906113759042613d5b565b61137f9190613d94565b90506000612710611391846096613d94565b61139b9190613d72565b6113ad90670de0b6b3a7640000613db3565b9050670de0b6b3a76400006113c28284613d94565b6113cc9190613d72565b6113d69088613db3565b9650505050611418565b600081815260086020526040902054651f9465b8ab8e906114019042613d5b565b61140b9190613d94565b6114159085613db3565b93505b336000908152600a602052604090206114319082613304565b600090815260096020526040902080546001600160a01b03191690558061145781613de1565b915050611243565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c59918590611496908690613db3565b6131e0565b6114a53382613596565b50565b6001600160a01b0381166000908152600d60209081526040918290208054835181840281018401909452808452606093928301828280156110cf57602002820191906000526020600020908154815260200190600101908083116110bb5750505050509050919050565b6000808061151f846121d7565b6001600160a01b0385166000908152600a602090815260408083208054825181850281018501909352808352949550929390929183018282801561158257602002820191906000526020600020905b81548152602001906001019080831161156e575b5050505050905060005b815181101561170c578251156116a457600062015180600860008585815181106115b8576115b8613dcb565b6020026020010151815260200190815260200160002054426115da9190613d5b565b6115e49190613d72565b6115f690670de0b6b3a7640000613d94565b90506000651f9465b8ab8e6008600086868151811061161757611617613dcb565b6020026020010151815260200190815260200160002054426116399190613d5b565b6116439190613d94565b90506000612710611655846096613d94565b61165f9190613d72565b61167190670de0b6b3a7640000613db3565b9050670de0b6b3a76400006116868284613d94565b6116909190613d72565b61169a9088613db3565b96505050506116fa565b651f9465b8ab8e600860008484815181106116c1576116c1613dcb565b6020026020010151815260200190815260200160002054426116e39190613d5b565b6116ed9190613d94565b6116f79085613db3565b93505b8061170481613de1565b91505061158c565b5091949350505050565b3360009081526011602052604090205460039042116117475760405162461bcd60e51b815260040161089f90613e76565b3233146117665760405162461bcd60e51b815260040161089f90613ead565b8060ff1660010361179a57600554600160a01b900460ff1661179a5760405162461bcd60e51b815260040161089f90613ee4565b8060ff166002036117ce57600554600160a81b900460ff166117ce5760405162461bcd60e51b815260040161089f90613f1b565b8060ff1660030361180257600554600160b01b900460ff166118025760405162461bcd60e51b815260040161089f90613f52565b8060ff1660040361183657600554600160b81b900460ff166118365760405162461bcd60e51b815260040161089f90613f89565b600654600254111561185a5760405162461bcd60e51b815260040161089f90613fc0565b60005b8251811015610c4757600083828151811061187a5761187a613dcb565b60209081029190910101516014546040516331a9108f60e11b81526004810183905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f79190613ff7565b6001600160a01b031614801561192257506000818152600c60205260409020546001600160a01b0316155b61193e5760405162461bcd60e51b815260040161089f90614014565b6014546040516323b872dd60e01b81526001600160a01b03909116906323b872dd9061197290339030908690600401613e52565b600060405180830381600087803b15801561198c57600080fd5b505af11580156119a0573d6000803e3d6000fd5b5050336000818152600d60209081526040808320805460018101825590845282842001879055958252600b81528582204290819055600c825286832080546001600160a01b0319168517905592825260119052939093209290925550819050611a0881613de1565b91505061185d565b6005546001600160a01b03163314611a3a5760405162461bcd60e51b815260040161089f90613dfa565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a865760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60b01b198116600160b01b9182900460ff1615909102179055565b336000908152601160205260409020546001904211611ad85760405162461bcd60e51b815260040161089f90613e76565b323314611af75760405162461bcd60e51b815260040161089f90613ead565b8060ff16600103611b2b57600554600160a01b900460ff16611b2b5760405162461bcd60e51b815260040161089f90613ee4565b8060ff16600203611b5f57600554600160a81b900460ff16611b5f5760405162461bcd60e51b815260040161089f90613f1b565b8060ff16600303611b9357600554600160b01b900460ff16611b935760405162461bcd60e51b815260040161089f90613f52565b8060ff16600403611bc757600554600160b81b900460ff16611bc75760405162461bcd60e51b815260040161089f90613f89565b6006546002541115611beb5760405162461bcd60e51b815260040161089f90613fc0565b60005b8251811015610c47576000838281518110611c0b57611c0b613dcb565b60209081029190910101516013546040516331a9108f60e11b81526004810183905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa158015611c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c889190613ff7565b6001600160a01b0316148015611cb357506000818152600960205260409020546001600160a01b0316155b611ccf5760405162461bcd60e51b815260040161089f90614014565b6013546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90611d0390339030908690600401613e52565b600060405180830381600087803b158015611d1d57600080fd5b505af1158015611d31573d6000803e3d6000fd5b5050336000818152600a602090815260408083208054600181018255908452828420018790559582526008815285822042908190556009825286832080546001600160a01b0319168517905592825260119052939093209290925550819050611d9981613de1565b915050611bee565b60008080611dae846121d7565b6001600160a01b0385166000908152600d6020908152604080832080548251818502810185019093528083529495509293909291830182828015611e1157602002820191906000526020600020905b815481526020019060010190808311611dfd575b5050505050905060005b815181101561170c57825115611f3357600062015180600b6000858581518110611e4757611e47613dcb565b602002602001015181526020019081526020016000205442611e699190613d5b565b611e739190613d72565b611e8590670de0b6b3a7640000613d94565b90506000650a86cc92e3da600b6000868681518110611ea657611ea6613dcb565b602002602001015181526020019081526020016000205442611ec89190613d5b565b611ed29190613d94565b90506000612710611ee4846096613d94565b611eee9190613d72565b611f0090670de0b6b3a7640000613db3565b9050670de0b6b3a7640000611f158284613d94565b611f1f9190613d72565b611f299088613db3565b9650505050611f89565b650a86cc92e3da600b6000848481518110611f5057611f50613dcb565b602002602001015181526020019081526020016000205442611f729190613d5b565b611f7c9190613d94565b611f869085613db3565b93505b80611f9381613de1565b915050611e1b565b6005546001600160a01b03163314611fc55760405162461bcd60e51b815260040161089f90613dfa565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146120115760405162461bcd60e51b815260040161089f90613dfa565b61201b60006136e4565b565b6005546001600160a01b031633146120475760405162461bcd60e51b815260040161089f90613dfa565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600c60205260408120546001600160a01b03166120c05760405162461bcd60e51b815260206004820152601060248201526f1513d2d15397d393d517d0955492515160821b604482015260640161089f565b6000806120cc336121d7565b805190915015612135576000848152600b602052604081205462015180906120f49042613d5b565b6120fe9190613d72565b61211090670de0b6b3a7640000613d94565b6000868152600b602052604081205491925090650a86cc92e3da9061091d9042613d5b565b6000848152600b6020526040902054650a86cc92e3da906109a99042613d5b565b60006121628333610739565b9050818110156121c05760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161089f565b6121cd83338484036131e0565b610c478383613596565b6001600160a01b0381166000908152600f60209081526040918290208054835181840281018401909452808452606093928301828280156110cf57602002820191906000526020600020908154815260200190600101908083116110bb5750505050509050919050565b6060600480546107c990613d0b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156122d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161089f565b6122df33858584036131e0565b5060019392505050565b33600090815260116020526040902054600290421161231a5760405162461bcd60e51b815260040161089f90613e76565b3233146123395760405162461bcd60e51b815260040161089f90613ead565b8060ff1660010361236d57600554600160a01b900460ff1661236d5760405162461bcd60e51b815260040161089f90613ee4565b8060ff166002036123a157600554600160a81b900460ff166123a15760405162461bcd60e51b815260040161089f90613f1b565b8060ff166003036123d557600554600160b01b900460ff166123d55760405162461bcd60e51b815260040161089f90613f52565b8060ff1660040361240957600554600160b81b900460ff166124095760405162461bcd60e51b815260040161089f90613f89565b600654600254111561242d5760405162461bcd60e51b815260040161089f90613fc0565b336000908152600f602052604090205460011161248c5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e206f6e6c79207374616b65203120626f6e6500000000000000604482015260640161089f565b6015546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156124d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f99190613ff7565b6001600160a01b031614801561252457506000828152600e60205260409020546001600160a01b0316155b6125405760405162461bcd60e51b815260040161089f90614014565b6015546040516323b872dd60e01b81526001600160a01b03909116906323b872dd9061257490339030908790600401613e52565b600060405180830381600087803b15801561258e57600080fd5b505af11580156125a2573d6000803e3d6000fd5b5050336000818152600f60209081526040808320805460018101825590845282842001889055968252600e815286822080546001600160a01b03191684179055918152601190915293909320429055505050565b6000610c593384846133c8565b6005546001600160a01b0316331461262d5760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60b81b198116600160b81b9182900460ff1615909102179055565b6000808061265b846121d7565b6001600160a01b0385166000908152600a60209081526040808320805482518185028101850190935280835294955092939092918301828280156126be57602002820191906000526020600020905b8154815260200190600101908083116126aa575b5050505050905060005b8151811015612848578251156127e057600062015180600860008585815181106126f4576126f4613dcb565b6020026020010151815260200190815260200160002054426127169190613d5b565b6127209190613d72565b61273290670de0b6b3a7640000613d94565b90506000651f9465b8ab8e6008600086868151811061275357612753613dcb565b6020026020010151815260200190815260200160002054426127759190613d5b565b61277f9190613d94565b90506000612710612791846096613d94565b61279b9190613d72565b6127ad90670de0b6b3a7640000613db3565b9050670de0b6b3a76400006127c28284613d94565b6127cc9190613d72565b6127d69088613db3565b9650505050612836565b651f9465b8ab8e600860008484815181106127fd576127fd613dcb565b60200260200101518152602001908152602001600020544261281f9190613d5b565b6128299190613d94565b6128339085613db3565b93505b8061284081613de1565b9150506126c8565b506001600160a01b0385166000908152600d60209081526040808320805482518185028101850190935280835291929091908301828280156128a957602002820191906000526020600020905b815481526020019060010190808311612895575b5050505050905060005b8151811015612a33578351156129cb57600062015180600b60008585815181106128df576128df613dcb565b6020026020010151815260200190815260200160002054426129019190613d5b565b61290b9190613d72565b61291d90670de0b6b3a7640000613d94565b90506000650a86cc92e3da600b600086868151811061293e5761293e613dcb565b6020026020010151815260200190815260200160002054426129609190613d5b565b61296a9190613d94565b9050600061271061297c846096613d94565b6129869190613d72565b61299890670de0b6b3a7640000613db3565b9050670de0b6b3a76400006129ad8284613d94565b6129b79190613d72565b6129c19089613db3565b9750505050612a21565b650a86cc92e3da600b60008484815181106129e8576129e8613dcb565b602002602001015181526020019081526020016000205442612a0a9190613d5b565b612a149190613d94565b612a1e9086613db3565b94505b80612a2b81613de1565b9150506128b3565b509295945050505050565b336000908152600d602052604090205415612a5b57612a5b6109c7565b336000908152600a60205260409020541561201b5761201b612df4565b6005546001600160a01b03163314612aa25760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60a01b198116600160a01b9182900460ff1615909102179055565b336000908152601160205260409020546004904211612af45760405162461bcd60e51b815260040161089f90613e76565b323314612b135760405162461bcd60e51b815260040161089f90613ead565b8060ff16600103612b4757600554600160a01b900460ff16612b475760405162461bcd60e51b815260040161089f90613ee4565b8060ff16600203612b7b57600554600160a81b900460ff16612b7b5760405162461bcd60e51b815260040161089f90613f1b565b8060ff16600303612baf57600554600160b01b900460ff16612baf5760405162461bcd60e51b815260040161089f90613f52565b8060ff16600403612be357600554600160b81b900460ff16612be35760405162461bcd60e51b815260040161089f90613f89565b6040516bffffffffffffffffffffffff193360601b166020820152603481018590526001600160c01b031960c085901b166054820152600090605c01604051602081830303815290604052805190602001209050612c418382613736565b612c8d5760405162461bcd60e51b815260206004820152601860248201527f4e4f545f454c494749424c455f464f525f41495244524f500000000000000000604482015260640161089f565b600654851115612ce95760405162461bcd60e51b815260206004820152602160248201527f414d4f554e545f53484f554c445f42455f4c4553535f5448414e5f535550504c6044820152605960f81b606482015260840161089f565b6006546002541115612d0d5760405162461bcd60e51b815260040161089f90613fc0565b3360009081526010602052604090205460ff1615612d5f5760405162461bcd60e51b815260206004820152600f60248201526e1053149150511657d0d31052535151608a1b604482015260640161089f565b33600081815260116020908152604080832042905560109091529020805460ff19166001179055612da190612d9c87670de0b6b3a7640000613d94565b613101565b5050505050565b6005546001600160a01b03163314612dd25760405162461bcd60e51b815260040161089f90613dfa565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b336000908152600a6020526040902054612e425760405162461bcd60e51b815260206004820152600f60248201526e4e4f5f5354414b45445f434f52474960881b604482015260640161089f565b600080612e4e336121d7565b336000908152600a6020908152604080832080548251818502810185019093528083529495509293909291830182828015612ea857602002820191906000526020600020905b815481526020019060010190808311612e94575b5050505050905060005b8151811015610c3c576000828281518110612ecf57612ecf613dcb565b602090810291909101810151600081815260099092526040909120549091506001600160a01b03163314612f3d5760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015260640161089f565b83511561300e576000818152600860205260408120546201518090612f629042613d5b565b612f6c9190613d72565b612f7e90670de0b6b3a7640000613d94565b60008381526008602052604081205491925090651f9465b8ab8e90612fa39042613d5b565b612fad9190613d94565b90506000612710612fbf846096613d94565b612fc99190613d72565b612fdb90670de0b6b3a7640000613db3565b9050670de0b6b3a7640000612ff08284613d94565b612ffa9190613d72565b6130049089613db3565b9750505050613046565b600081815260086020526040902054651f9465b8ab8e9061302f9042613d5b565b6130399190613d94565b6130439086613db3565b94505b60009081526008602052604090204290558061306181613de1565b915050612eb2565b6005546001600160a01b031633146130935760405162461bcd60e51b815260040161089f90613dfa565b6001600160a01b0381166130f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089f565b6114a5816136e4565b6001600160a01b0382166131575760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161089f565b80600260008282546131699190613db3565b90915550506001600160a01b03821660009081526020819052604081208054839290613196908490613db3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166132425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161089f565b6001600160a01b0382166132a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161089f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b815460005b818110156133c2578284828154811061332457613324613dcb565b9060005260206000200154036133b0578161333e81614040565b925050818110156133855783828154811061335b5761335b613dcb565b906000526020600020015484828154811061337857613378613dcb565b6000918252602090912001555b8380548061339557613395614057565b600190038181906000526020600020016000905590556133c2565b806133ba81613de1565b915050613309565b50505050565b6001600160a01b03831661342c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161089f565b6001600160a01b03821661348e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161089f565b6001600160a01b038316600090815260208190526040902054818110156135065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161089f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061353d908490613db3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161358991815260200190565b60405180910390a36133c2565b6001600160a01b0382166135f65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161089f565b6001600160a01b0382166000908152602081905260409020548181101561366a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161089f565b6001600160a01b0383166000908152602081905260408120838303905560028054849290613699908490613d5b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6012546000906001600160a01b031661374f8385613760565b6001600160a01b0316149392505050565b600081516041036137935760208201516040830151606084015160001a61378986828585613802565b9350505050610c5d565b81516040036137ba57602082015160408301516137b18583836139ab565b92505050610c5d565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161089f565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561387f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161089f565b8360ff16601b148061389457508360ff16601c145b6138eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161089f565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561393f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139a25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161089f565b95945050505050565b60006001600160ff1b03821660ff83901c601b016139cb86828785613802565b9695505050505050565b600060208083528351808285015260005b81811015613a02578581018301518582016040015282016139e6565b81811115613a14576000604083870101525b50601f01601f1916929092016040019392505050565b600060208284031215613a3c57600080fd5b5035919050565b6001600160a01b03811681146114a557600080fd5b60008060408385031215613a6b57600080fd5b8235613a7681613a43565b946020939093013593505050565b600060208284031215613a9657600080fd5b8135613aa181613a43565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613ae757613ae7613aa8565b604052919050565b60006020808385031215613b0257600080fd5b823567ffffffffffffffff80821115613b1a57600080fd5b818501915085601f830112613b2e57600080fd5b813581811115613b4057613b40613aa8565b8060051b9150613b51848301613abe565b8181529183018401918481019088841115613b6b57600080fd5b938501935b83851015613b8957843582529385019390850190613b70565b98975050505050505050565b600080600060608486031215613baa57600080fd5b8335613bb581613a43565b92506020840135613bc581613a43565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015613c0e57835183529284019291840191600101613bf2565b50909695505050505050565b60008060408385031215613c2d57600080fd5b8235613c3881613a43565b91506020830135613c4881613a43565b809150509250929050565b600080600060608486031215613c6857600080fd5b8335925060208085013567ffffffffffffffff8082168214613c8957600080fd5b90935060408601359080821115613c9f57600080fd5b818701915087601f830112613cb357600080fd5b813581811115613cc557613cc5613aa8565b613cd7601f8201601f19168501613abe565b91508082528884828501011115613ced57600080fd5b80848401858401376000848284010152508093505050509250925092565b600181811c90821680613d1f57607f821691505b602082108103613d3f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015613d6d57613d6d613d45565b500390565b600082613d8f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615613dae57613dae613d45565b500290565b60008219821115613dc657613dc6613d45565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201613df357613df3613d45565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600990820152682737ba1027bbb732b960b91b604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6020808252601e908201527f43414e4e4f545f5452414e534143545f5448455f53414d455f424c4f434b0000604082015260600190565b6020808252601d908201527f434f4e5452414354535f4e4f545f414c4c4f5745445f544f5f4d494e54000000604082015260600190565b6020808252601f908201527f434f5247495f5354414b494e475f49535f4e4f545f5945545f41435449564500604082015260600190565b6020808252601e908201527f424f4e455f5354414b494e475f49535f4e4f545f5945545f4143544956450000604082015260600190565b6020808252601d908201527f5055505f5354414b494e475f49535f4e4f545f5945545f414354495645000000604082015260600190565b6020808252601a908201527f434c41494d494e475f49535f4e4f545f5945545f414354495645000000000000604082015260600190565b60208082526017908201527f4e4f5f4d4f52455f4d494e5441424c455f535550504c59000000000000000000604082015260600190565b60006020828403121561400957600080fd5b8151613aa181613a43565b602080825260129082015271544f4b454e5f49535f4e4f545f594f55525360701b604082015260600190565b60008161404f5761404f613d45565b506000190190565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204bc17315029c0e8d7f073b49f37958a16b08d0a9eb78eb9caefc2b68791e250464736f6c634300080f0033000000000000000000000000428119b77275cdbcf6ed3d1d76b51d37019caaee0000000000000000000000004f1b1306e8bd70389d3c413888a61bb41171a0bc00000000000000000000000077c7f7dc1b592e884966f0dc4ae0ffb93cba1a7e

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061035d5760003560e01c80636b244ccb116101d3578063a8dbc6c911610104578063dd62ed3e116100a2578063eb56638f1161007c578063eb56638f1461077f578063eca335ef14610792578063f1c8266d1461079a578063f2fde38b146107a757600080fd5b8063dd62ed3e1461072b578063de58046114610764578063e9a6d4231461076c57600080fd5b8063ad7963a0116100de578063ad7963a0146106ff578063b9c169d714610707578063c3b2d3371461071a578063d1058e591461072357600080fd5b8063a8dbc6c9146106c5578063a9059cbb146106d8578063ad701ff7146106eb57600080fd5b806379cc67901161017157806395d89b411161014b57806395d89b411461066d5780639ba62e7f146106755780639ead063014610689578063a457c2d7146106b257600080fd5b806379cc67901461063657806384c2f831146106495780638da5cb5b1461065c57600080fd5b8063715018a6116101ad578063715018a6146105df57806372455c95146105e7578063771af968146105fa5780637793b2181461060d57600080fd5b80636b244ccb146105905780636c19e783146105a357806370a08231146105b657600080fd5b806323b872dd116102ad57806346cf5f2a1161024b5780635b9ca873116102255780635b9ca8731461055557806367929a4e146105625780636842708b14610575578063693f44541461057d57600080fd5b806346cf5f2a1461051c57806354c70b651461052f57806358796a531461054257600080fd5b806335322f371161028757806335322f37146104db578063392f8057146104e357806339509351146104f657806342966c681461050957600080fd5b806323b872dd146104995780632b049ec9146104ac578063313ce567146104cc57600080fd5b80630bd615361161031a5780631b93f66d116102f45780631b93f66d146104465780631c6e510414610469578063208bfe1c1461047d57806322f4596f1461049057600080fd5b80630bd61536146104235780630cfa55141461042b57806318160ddd1461043e57600080fd5b806306fdde0314610362578063077cd1371461038057806307e56adf146103c157806308666b04146103e257806309355de414610406578063095ea7b314610410575b600080fd5b61036a6107ba565b60405161037791906139d5565b60405180910390f35b6103a961038e366004613a2a565b6000908152600960205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610377565b6103d46103cf366004613a2a565b61084c565b604051908152602001610377565b6005546103f690600160a01b900460ff1681565b6040519015158152602001610377565b61040e6109c7565b005b6103f661041e366004613a58565b610c4c565b61040e610c63565b61040e610439366004613a2a565b610cae565b6002546103d4565b6103f6610454366004613a84565b60106020526000908152604090205460ff1681565b6005546103f690600160a81b900460ff1681565b61040e61048b366004613aef565b610d82565b6103d460065481565b6103f66104a7366004613b95565b610fc5565b6104bf6104ba366004613a84565b61106f565b6040516103779190613bd6565b60405160128152602001610377565b61040e6110db565b61040e6104f1366004613aef565b611232565b6103f6610504366004613a58565b61145f565b61040e610517366004613a2a565b61149b565b6104bf61052a366004613a84565b6114a8565b6103d461053d366004613a84565b611512565b61040e610550366004613aef565b611716565b6103d4650a86cc92e3da81565b61040e610570366004613a84565b611a10565b61040e611a5c565b61040e61058b366004613aef565b611aa7565b6103d461059e366004613a84565b611da1565b61040e6105b1366004613a84565b611f9b565b6103d46105c4366004613a84565b6001600160a01b031660009081526020819052604090205490565b61040e611fe7565b61040e6105f5366004613a84565b61201d565b6103d4610608366004613a2a565b612069565b6103a961061b366004613a2a565b6000908152600c60205260409020546001600160a01b031690565b61040e610644366004613a58565b612156565b6104bf610657366004613a84565b6121d7565b6005546001600160a01b03166103a9565b61036a612241565b6005546103f690600160b81b900460ff1681565b6103a9610697366004613a2a565b6000908152600e60205260409020546001600160a01b031690565b6103f66106c0366004613a58565b612250565b61040e6106d3366004613a2a565b6122e9565b6103f66106e6366004613a58565b6125f6565b6005546103f690600160b01b900460ff1681565b61040e612603565b6103d4610715366004613a84565b61264e565b6103d460075481565b61040e612a3e565b6103d4610739366004613c1a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61040e612a78565b61040e61077a366004613c53565b612ac3565b61040e61078d366004613a84565b612da8565b61040e612df4565b6103d4651f9465b8ab8e81565b61040e6107b5366004613a84565b613069565b6060600380546107c990613d0b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590613d0b565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000818152600960205260408120546001600160a01b03166108a85760405162461bcd60e51b815260206004820152601060248201526f1513d2d15397d393d517d0955492515160821b60448201526064015b60405180910390fd5b6000806108b4336121d7565b8051909150156109885760008481526008602052604081205462015180906108dc9042613d5b565b6108e69190613d72565b6108f890670de0b6b3a7640000613d94565b60008681526008602052604081205491925090651f9465b8ab8e9061091d9042613d5b565b6109279190613d94565b90506000612710610939846096613d94565b6109439190613d72565b61095590670de0b6b3a7640000613db3565b9050670de0b6b3a764000061096a8284613d94565b6109749190613d72565b61097e9086613db3565b94505050506109c0565b600084815260086020526040902054651f9465b8ab8e906109a99042613d5b565b6109b39190613d94565b6109bd9083613db3565b91505b5092915050565b336000908152600d6020526040902054610a155760405162461bcd60e51b815260206004820152600f60248201526e4e4f5f5354414b45445f434f52474960881b604482015260640161089f565b600080610a21336121d7565b336000908152600d6020908152604080832080548251818502810185019093528083529495509293909291830182828015610a7b57602002820191906000526020600020905b815481526020019060010190808311610a67575b5050505050905060005b8151811015610c3c576000828281518110610aa257610aa2613dcb565b6020908102919091018101516000818152600c9092526040909120549091506001600160a01b03163314610b105760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015260640161089f565b835115610be1576000818152600b60205260408120546201518090610b359042613d5b565b610b3f9190613d72565b610b5190670de0b6b3a7640000613d94565b6000838152600b602052604081205491925090650a86cc92e3da90610b769042613d5b565b610b809190613d94565b90506000612710610b92846096613d94565b610b9c9190613d72565b610bae90670de0b6b3a7640000613db3565b9050670de0b6b3a7640000610bc38284613d94565b610bcd9190613d72565b610bd79089613db3565b9750505050610c19565b6000818152600b6020526040902054650a86cc92e3da90610c029042613d5b565b610c0c9190613d94565b610c169086613db3565b94505b6000908152600b6020526040902042905580610c3481613de1565b915050610a85565b50610c473384613101565b505050565b6000610c593384846131e0565b5060015b92915050565b6005546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6000818152600e60205260409020546001600160a01b03163314610ce45760405162461bcd60e51b815260040161089f90613e2f565b6015546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90610d1890309033908690600401613e52565b600060405180830381600087803b158015610d3257600080fd5b505af1158015610d46573d6000803e3d6000fd5b5050336000908152600f60205260409020610d649250905082613304565b6000908152600e6020526040902080546001600160a01b0319169055565b600080610d8e336121d7565b905060005b8351811015610faf576000848281518110610db057610db0613dcb565b6020908102919091018101516000818152600c9092526040909120549091506001600160a01b03163314610df65760405162461bcd60e51b815260040161089f90613e2f565b6014546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90610e2a90309033908690600401613e52565b600060405180830381600087803b158015610e4457600080fd5b505af1158015610e58573d6000803e3d6000fd5b50505050600083511115610f30576000818152600b60205260408120546201518090610e849042613d5b565b610e8e9190613d72565b610ea090670de0b6b3a7640000613d94565b6000838152600b602052604081205491925090650a86cc92e3da90610ec59042613d5b565b610ecf9190613d94565b90506000612710610ee1846096613d94565b610eeb9190613d72565b610efd90670de0b6b3a7640000613db3565b9050670de0b6b3a7640000610f128284613d94565b610f1c9190613d72565b610f269088613db3565b9650505050610f68565b6000818152600b6020526040902054650a86cc92e3da90610f519042613d5b565b610f5b9190613d94565b610f659085613db3565b93505b336000908152600d60205260409020610f819082613304565b6000908152600c6020526040902080546001600160a01b031916905580610fa781613de1565b915050610d93565b5060065460025411610c4757610c473383613101565b6000610fd28484846133c8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156110575760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161089f565b61106485338584036131e0565b506001949350505050565b6001600160a01b0381166000908152600a60209081526040918290208054835181840281018401909452808452606093928301828280156110cf57602002820191906000526020600020905b8154815260200190600101908083116110bb575b50505050509050919050565b336000908152600d602090815260408083208054825181850281018501909352808352919290919083018282801561113257602002820191906000526020600020905b81548152602001906001019080831161111e575b5050336000908152600a602090815260408083208054825181850281018501909352808352979850929690955091935090915083018282801561119457602002820191906000526020600020905b815481526020019060010190808311611180575b5050336000908152600f60209081526040808320805482518185028101850190935280835297985092969095509193509091508301828280156111f657602002820191906000526020600020905b8154815260200190600101908083116111e2575b5050505050905061120682611232565b61120f83610d82565b610c478160008151811061122557611225613dcb565b6020026020010151610cae565b60008061123e336121d7565b905060005b8351811015610faf57600084828151811061126057611260613dcb565b602090810291909101810151600081815260099092526040909120549091506001600160a01b031633146112a65760405162461bcd60e51b815260040161089f90613e2f565b6013546040516323b872dd60e01b81526001600160a01b03909116906323b872dd906112da90309033908690600401613e52565b600060405180830381600087803b1580156112f457600080fd5b505af1158015611308573d6000803e3d6000fd5b505050506000835111156113e05760008181526008602052604081205462015180906113349042613d5b565b61133e9190613d72565b61135090670de0b6b3a7640000613d94565b60008381526008602052604081205491925090651f9465b8ab8e906113759042613d5b565b61137f9190613d94565b90506000612710611391846096613d94565b61139b9190613d72565b6113ad90670de0b6b3a7640000613db3565b9050670de0b6b3a76400006113c28284613d94565b6113cc9190613d72565b6113d69088613db3565b9650505050611418565b600081815260086020526040902054651f9465b8ab8e906114019042613d5b565b61140b9190613d94565b6114159085613db3565b93505b336000908152600a602052604090206114319082613304565b600090815260096020526040902080546001600160a01b03191690558061145781613de1565b915050611243565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c59918590611496908690613db3565b6131e0565b6114a53382613596565b50565b6001600160a01b0381166000908152600d60209081526040918290208054835181840281018401909452808452606093928301828280156110cf57602002820191906000526020600020908154815260200190600101908083116110bb5750505050509050919050565b6000808061151f846121d7565b6001600160a01b0385166000908152600a602090815260408083208054825181850281018501909352808352949550929390929183018282801561158257602002820191906000526020600020905b81548152602001906001019080831161156e575b5050505050905060005b815181101561170c578251156116a457600062015180600860008585815181106115b8576115b8613dcb565b6020026020010151815260200190815260200160002054426115da9190613d5b565b6115e49190613d72565b6115f690670de0b6b3a7640000613d94565b90506000651f9465b8ab8e6008600086868151811061161757611617613dcb565b6020026020010151815260200190815260200160002054426116399190613d5b565b6116439190613d94565b90506000612710611655846096613d94565b61165f9190613d72565b61167190670de0b6b3a7640000613db3565b9050670de0b6b3a76400006116868284613d94565b6116909190613d72565b61169a9088613db3565b96505050506116fa565b651f9465b8ab8e600860008484815181106116c1576116c1613dcb565b6020026020010151815260200190815260200160002054426116e39190613d5b565b6116ed9190613d94565b6116f79085613db3565b93505b8061170481613de1565b91505061158c565b5091949350505050565b3360009081526011602052604090205460039042116117475760405162461bcd60e51b815260040161089f90613e76565b3233146117665760405162461bcd60e51b815260040161089f90613ead565b8060ff1660010361179a57600554600160a01b900460ff1661179a5760405162461bcd60e51b815260040161089f90613ee4565b8060ff166002036117ce57600554600160a81b900460ff166117ce5760405162461bcd60e51b815260040161089f90613f1b565b8060ff1660030361180257600554600160b01b900460ff166118025760405162461bcd60e51b815260040161089f90613f52565b8060ff1660040361183657600554600160b81b900460ff166118365760405162461bcd60e51b815260040161089f90613f89565b600654600254111561185a5760405162461bcd60e51b815260040161089f90613fc0565b60005b8251811015610c4757600083828151811061187a5761187a613dcb565b60209081029190910101516014546040516331a9108f60e11b81526004810183905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f79190613ff7565b6001600160a01b031614801561192257506000818152600c60205260409020546001600160a01b0316155b61193e5760405162461bcd60e51b815260040161089f90614014565b6014546040516323b872dd60e01b81526001600160a01b03909116906323b872dd9061197290339030908690600401613e52565b600060405180830381600087803b15801561198c57600080fd5b505af11580156119a0573d6000803e3d6000fd5b5050336000818152600d60209081526040808320805460018101825590845282842001879055958252600b81528582204290819055600c825286832080546001600160a01b0319168517905592825260119052939093209290925550819050611a0881613de1565b91505061185d565b6005546001600160a01b03163314611a3a5760405162461bcd60e51b815260040161089f90613dfa565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a865760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60b01b198116600160b01b9182900460ff1615909102179055565b336000908152601160205260409020546001904211611ad85760405162461bcd60e51b815260040161089f90613e76565b323314611af75760405162461bcd60e51b815260040161089f90613ead565b8060ff16600103611b2b57600554600160a01b900460ff16611b2b5760405162461bcd60e51b815260040161089f90613ee4565b8060ff16600203611b5f57600554600160a81b900460ff16611b5f5760405162461bcd60e51b815260040161089f90613f1b565b8060ff16600303611b9357600554600160b01b900460ff16611b935760405162461bcd60e51b815260040161089f90613f52565b8060ff16600403611bc757600554600160b81b900460ff16611bc75760405162461bcd60e51b815260040161089f90613f89565b6006546002541115611beb5760405162461bcd60e51b815260040161089f90613fc0565b60005b8251811015610c47576000838281518110611c0b57611c0b613dcb565b60209081029190910101516013546040516331a9108f60e11b81526004810183905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa158015611c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c889190613ff7565b6001600160a01b0316148015611cb357506000818152600960205260409020546001600160a01b0316155b611ccf5760405162461bcd60e51b815260040161089f90614014565b6013546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90611d0390339030908690600401613e52565b600060405180830381600087803b158015611d1d57600080fd5b505af1158015611d31573d6000803e3d6000fd5b5050336000818152600a602090815260408083208054600181018255908452828420018790559582526008815285822042908190556009825286832080546001600160a01b0319168517905592825260119052939093209290925550819050611d9981613de1565b915050611bee565b60008080611dae846121d7565b6001600160a01b0385166000908152600d6020908152604080832080548251818502810185019093528083529495509293909291830182828015611e1157602002820191906000526020600020905b815481526020019060010190808311611dfd575b5050505050905060005b815181101561170c57825115611f3357600062015180600b6000858581518110611e4757611e47613dcb565b602002602001015181526020019081526020016000205442611e699190613d5b565b611e739190613d72565b611e8590670de0b6b3a7640000613d94565b90506000650a86cc92e3da600b6000868681518110611ea657611ea6613dcb565b602002602001015181526020019081526020016000205442611ec89190613d5b565b611ed29190613d94565b90506000612710611ee4846096613d94565b611eee9190613d72565b611f0090670de0b6b3a7640000613db3565b9050670de0b6b3a7640000611f158284613d94565b611f1f9190613d72565b611f299088613db3565b9650505050611f89565b650a86cc92e3da600b6000848481518110611f5057611f50613dcb565b602002602001015181526020019081526020016000205442611f729190613d5b565b611f7c9190613d94565b611f869085613db3565b93505b80611f9381613de1565b915050611e1b565b6005546001600160a01b03163314611fc55760405162461bcd60e51b815260040161089f90613dfa565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146120115760405162461bcd60e51b815260040161089f90613dfa565b61201b60006136e4565b565b6005546001600160a01b031633146120475760405162461bcd60e51b815260040161089f90613dfa565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600c60205260408120546001600160a01b03166120c05760405162461bcd60e51b815260206004820152601060248201526f1513d2d15397d393d517d0955492515160821b604482015260640161089f565b6000806120cc336121d7565b805190915015612135576000848152600b602052604081205462015180906120f49042613d5b565b6120fe9190613d72565b61211090670de0b6b3a7640000613d94565b6000868152600b602052604081205491925090650a86cc92e3da9061091d9042613d5b565b6000848152600b6020526040902054650a86cc92e3da906109a99042613d5b565b60006121628333610739565b9050818110156121c05760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161089f565b6121cd83338484036131e0565b610c478383613596565b6001600160a01b0381166000908152600f60209081526040918290208054835181840281018401909452808452606093928301828280156110cf57602002820191906000526020600020908154815260200190600101908083116110bb5750505050509050919050565b6060600480546107c990613d0b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156122d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161089f565b6122df33858584036131e0565b5060019392505050565b33600090815260116020526040902054600290421161231a5760405162461bcd60e51b815260040161089f90613e76565b3233146123395760405162461bcd60e51b815260040161089f90613ead565b8060ff1660010361236d57600554600160a01b900460ff1661236d5760405162461bcd60e51b815260040161089f90613ee4565b8060ff166002036123a157600554600160a81b900460ff166123a15760405162461bcd60e51b815260040161089f90613f1b565b8060ff166003036123d557600554600160b01b900460ff166123d55760405162461bcd60e51b815260040161089f90613f52565b8060ff1660040361240957600554600160b81b900460ff166124095760405162461bcd60e51b815260040161089f90613f89565b600654600254111561242d5760405162461bcd60e51b815260040161089f90613fc0565b336000908152600f602052604090205460011161248c5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e206f6e6c79207374616b65203120626f6e6500000000000000604482015260640161089f565b6015546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156124d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f99190613ff7565b6001600160a01b031614801561252457506000828152600e60205260409020546001600160a01b0316155b6125405760405162461bcd60e51b815260040161089f90614014565b6015546040516323b872dd60e01b81526001600160a01b03909116906323b872dd9061257490339030908790600401613e52565b600060405180830381600087803b15801561258e57600080fd5b505af11580156125a2573d6000803e3d6000fd5b5050336000818152600f60209081526040808320805460018101825590845282842001889055968252600e815286822080546001600160a01b03191684179055918152601190915293909320429055505050565b6000610c593384846133c8565b6005546001600160a01b0316331461262d5760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60b81b198116600160b81b9182900460ff1615909102179055565b6000808061265b846121d7565b6001600160a01b0385166000908152600a60209081526040808320805482518185028101850190935280835294955092939092918301828280156126be57602002820191906000526020600020905b8154815260200190600101908083116126aa575b5050505050905060005b8151811015612848578251156127e057600062015180600860008585815181106126f4576126f4613dcb565b6020026020010151815260200190815260200160002054426127169190613d5b565b6127209190613d72565b61273290670de0b6b3a7640000613d94565b90506000651f9465b8ab8e6008600086868151811061275357612753613dcb565b6020026020010151815260200190815260200160002054426127759190613d5b565b61277f9190613d94565b90506000612710612791846096613d94565b61279b9190613d72565b6127ad90670de0b6b3a7640000613db3565b9050670de0b6b3a76400006127c28284613d94565b6127cc9190613d72565b6127d69088613db3565b9650505050612836565b651f9465b8ab8e600860008484815181106127fd576127fd613dcb565b60200260200101518152602001908152602001600020544261281f9190613d5b565b6128299190613d94565b6128339085613db3565b93505b8061284081613de1565b9150506126c8565b506001600160a01b0385166000908152600d60209081526040808320805482518185028101850190935280835291929091908301828280156128a957602002820191906000526020600020905b815481526020019060010190808311612895575b5050505050905060005b8151811015612a33578351156129cb57600062015180600b60008585815181106128df576128df613dcb565b6020026020010151815260200190815260200160002054426129019190613d5b565b61290b9190613d72565b61291d90670de0b6b3a7640000613d94565b90506000650a86cc92e3da600b600086868151811061293e5761293e613dcb565b6020026020010151815260200190815260200160002054426129609190613d5b565b61296a9190613d94565b9050600061271061297c846096613d94565b6129869190613d72565b61299890670de0b6b3a7640000613db3565b9050670de0b6b3a76400006129ad8284613d94565b6129b79190613d72565b6129c19089613db3565b9750505050612a21565b650a86cc92e3da600b60008484815181106129e8576129e8613dcb565b602002602001015181526020019081526020016000205442612a0a9190613d5b565b612a149190613d94565b612a1e9086613db3565b94505b80612a2b81613de1565b9150506128b3565b509295945050505050565b336000908152600d602052604090205415612a5b57612a5b6109c7565b336000908152600a60205260409020541561201b5761201b612df4565b6005546001600160a01b03163314612aa25760405162461bcd60e51b815260040161089f90613dfa565b6005805460ff60a01b198116600160a01b9182900460ff1615909102179055565b336000908152601160205260409020546004904211612af45760405162461bcd60e51b815260040161089f90613e76565b323314612b135760405162461bcd60e51b815260040161089f90613ead565b8060ff16600103612b4757600554600160a01b900460ff16612b475760405162461bcd60e51b815260040161089f90613ee4565b8060ff16600203612b7b57600554600160a81b900460ff16612b7b5760405162461bcd60e51b815260040161089f90613f1b565b8060ff16600303612baf57600554600160b01b900460ff16612baf5760405162461bcd60e51b815260040161089f90613f52565b8060ff16600403612be357600554600160b81b900460ff16612be35760405162461bcd60e51b815260040161089f90613f89565b6040516bffffffffffffffffffffffff193360601b166020820152603481018590526001600160c01b031960c085901b166054820152600090605c01604051602081830303815290604052805190602001209050612c418382613736565b612c8d5760405162461bcd60e51b815260206004820152601860248201527f4e4f545f454c494749424c455f464f525f41495244524f500000000000000000604482015260640161089f565b600654851115612ce95760405162461bcd60e51b815260206004820152602160248201527f414d4f554e545f53484f554c445f42455f4c4553535f5448414e5f535550504c6044820152605960f81b606482015260840161089f565b6006546002541115612d0d5760405162461bcd60e51b815260040161089f90613fc0565b3360009081526010602052604090205460ff1615612d5f5760405162461bcd60e51b815260206004820152600f60248201526e1053149150511657d0d31052535151608a1b604482015260640161089f565b33600081815260116020908152604080832042905560109091529020805460ff19166001179055612da190612d9c87670de0b6b3a7640000613d94565b613101565b5050505050565b6005546001600160a01b03163314612dd25760405162461bcd60e51b815260040161089f90613dfa565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b336000908152600a6020526040902054612e425760405162461bcd60e51b815260206004820152600f60248201526e4e4f5f5354414b45445f434f52474960881b604482015260640161089f565b600080612e4e336121d7565b336000908152600a6020908152604080832080548251818502810185019093528083529495509293909291830182828015612ea857602002820191906000526020600020905b815481526020019060010190808311612e94575b5050505050905060005b8151811015610c3c576000828281518110612ecf57612ecf613dcb565b602090810291909101810151600081815260099092526040909120549091506001600160a01b03163314612f3d5760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604482015260640161089f565b83511561300e576000818152600860205260408120546201518090612f629042613d5b565b612f6c9190613d72565b612f7e90670de0b6b3a7640000613d94565b60008381526008602052604081205491925090651f9465b8ab8e90612fa39042613d5b565b612fad9190613d94565b90506000612710612fbf846096613d94565b612fc99190613d72565b612fdb90670de0b6b3a7640000613db3565b9050670de0b6b3a7640000612ff08284613d94565b612ffa9190613d72565b6130049089613db3565b9750505050613046565b600081815260086020526040902054651f9465b8ab8e9061302f9042613d5b565b6130399190613d94565b6130439086613db3565b94505b60009081526008602052604090204290558061306181613de1565b915050612eb2565b6005546001600160a01b031633146130935760405162461bcd60e51b815260040161089f90613dfa565b6001600160a01b0381166130f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089f565b6114a5816136e4565b6001600160a01b0382166131575760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161089f565b80600260008282546131699190613db3565b90915550506001600160a01b03821660009081526020819052604081208054839290613196908490613db3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166132425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161089f565b6001600160a01b0382166132a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161089f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b815460005b818110156133c2578284828154811061332457613324613dcb565b9060005260206000200154036133b0578161333e81614040565b925050818110156133855783828154811061335b5761335b613dcb565b906000526020600020015484828154811061337857613378613dcb565b6000918252602090912001555b8380548061339557613395614057565b600190038181906000526020600020016000905590556133c2565b806133ba81613de1565b915050613309565b50505050565b6001600160a01b03831661342c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161089f565b6001600160a01b03821661348e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161089f565b6001600160a01b038316600090815260208190526040902054818110156135065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161089f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061353d908490613db3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161358991815260200190565b60405180910390a36133c2565b6001600160a01b0382166135f65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161089f565b6001600160a01b0382166000908152602081905260409020548181101561366a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161089f565b6001600160a01b0383166000908152602081905260408120838303905560028054849290613699908490613d5b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6012546000906001600160a01b031661374f8385613760565b6001600160a01b0316149392505050565b600081516041036137935760208201516040830151606084015160001a61378986828585613802565b9350505050610c5d565b81516040036137ba57602082015160408301516137b18583836139ab565b92505050610c5d565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161089f565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561387f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161089f565b8360ff16601b148061389457508360ff16601c145b6138eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161089f565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561393f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139a25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161089f565b95945050505050565b60006001600160ff1b03821660ff83901c601b016139cb86828785613802565b9695505050505050565b600060208083528351808285015260005b81811015613a02578581018301518582016040015282016139e6565b81811115613a14576000604083870101525b50601f01601f1916929092016040019392505050565b600060208284031215613a3c57600080fd5b5035919050565b6001600160a01b03811681146114a557600080fd5b60008060408385031215613a6b57600080fd5b8235613a7681613a43565b946020939093013593505050565b600060208284031215613a9657600080fd5b8135613aa181613a43565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613ae757613ae7613aa8565b604052919050565b60006020808385031215613b0257600080fd5b823567ffffffffffffffff80821115613b1a57600080fd5b818501915085601f830112613b2e57600080fd5b813581811115613b4057613b40613aa8565b8060051b9150613b51848301613abe565b8181529183018401918481019088841115613b6b57600080fd5b938501935b83851015613b8957843582529385019390850190613b70565b98975050505050505050565b600080600060608486031215613baa57600080fd5b8335613bb581613a43565b92506020840135613bc581613a43565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015613c0e57835183529284019291840191600101613bf2565b50909695505050505050565b60008060408385031215613c2d57600080fd5b8235613c3881613a43565b91506020830135613c4881613a43565b809150509250929050565b600080600060608486031215613c6857600080fd5b8335925060208085013567ffffffffffffffff8082168214613c8957600080fd5b90935060408601359080821115613c9f57600080fd5b818701915087601f830112613cb357600080fd5b813581811115613cc557613cc5613aa8565b613cd7601f8201601f19168501613abe565b91508082528884828501011115613ced57600080fd5b80848401858401376000848284010152508093505050509250925092565b600181811c90821680613d1f57607f821691505b602082108103613d3f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015613d6d57613d6d613d45565b500390565b600082613d8f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615613dae57613dae613d45565b500290565b60008219821115613dc657613dc6613d45565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201613df357613df3613d45565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600990820152682737ba1027bbb732b960b91b604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6020808252601e908201527f43414e4e4f545f5452414e534143545f5448455f53414d455f424c4f434b0000604082015260600190565b6020808252601d908201527f434f4e5452414354535f4e4f545f414c4c4f5745445f544f5f4d494e54000000604082015260600190565b6020808252601f908201527f434f5247495f5354414b494e475f49535f4e4f545f5945545f41435449564500604082015260600190565b6020808252601e908201527f424f4e455f5354414b494e475f49535f4e4f545f5945545f4143544956450000604082015260600190565b6020808252601d908201527f5055505f5354414b494e475f49535f4e4f545f5945545f414354495645000000604082015260600190565b6020808252601a908201527f434c41494d494e475f49535f4e4f545f5945545f414354495645000000000000604082015260600190565b60208082526017908201527f4e4f5f4d4f52455f4d494e5441424c455f535550504c59000000000000000000604082015260600190565b60006020828403121561400957600080fd5b8151613aa181613a43565b602080825260129082015271544f4b454e5f49535f4e4f545f594f55525360701b604082015260600190565b60008161404f5761404f613d45565b506000190190565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204bc17315029c0e8d7f073b49f37958a16b08d0a9eb78eb9caefc2b68791e250464736f6c634300080f0033

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

000000000000000000000000428119b77275cdbcf6ed3d1d76b51d37019caaee0000000000000000000000004f1b1306e8bd70389d3c413888a61bb41171a0bc00000000000000000000000077c7f7dc1b592e884966f0dc4ae0ffb93cba1a7e

-----Decoded View---------------
Arg [0] : _signer (address): 0x428119b77275CDBCF6Ed3D1D76b51D37019cAaee
Arg [1] : _corgi (address): 0x4F1B1306E8bd70389d3C413888a61BB41171a0Bc
Arg [2] : _bone (address): 0x77C7f7Dc1b592E884966f0dc4AE0fFB93CBA1a7e

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000428119b77275cdbcf6ed3d1d76b51d37019caaee
Arg [1] : 0000000000000000000000004f1b1306e8bd70389d3c413888a61bb41171a0bc
Arg [2] : 00000000000000000000000077c7f7dc1b592e884966f0dc4ae0ffb93cba1a7e


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.