ETH Price: $3,139.21 (-7.22%)

Token

 

Overview

Max Total Supply

210

Holders

130

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rexusfox.eth
0xAAA81Cce9fd38e5abac0808EF19C64d595631fFE
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:
NmbDashTickets

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : NmbDashTickets.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";

interface ICamel {
    function balanceOf(address wallet) external view returns (uint256);
}

contract NmbDashTickets is Ownable, ERC1155Supply {
  using SafeMath for uint256;
  using Strings for uint256;

  ICamel public camelContract;

  uint256 public currentSeason = 1;
  uint256 public currentTicketPrice = 0.015 ether;
  uint256 public currentTicketLimit = 216;
  bool public saleActive = false;

  string private _imageURI;
  address private _withdrawalAddress;

  constructor(
    string memory imageURI,
    address withdrawalAddress,
    address camelContractAddress
  ) ERC1155("") {
    _imageURI = imageURI;
    _withdrawalAddress = withdrawalAddress;
    camelContract = ICamel(camelContractAddress);
  }

  function buyTickets(uint256 amount) public payable {
    require(saleActive, "Sale is not active");
    require(msg.value >= currentTicketPrice.mul(amount), "Insufficient payment");
    require(totalSupply(currentSeason) + amount <= currentTicketLimit, "Not enough tickets left");
    require(camelContract.balanceOf(msg.sender) >= (amount + balanceOf(msg.sender, currentSeason)), "Don't own enough camels");

    _mint(msg.sender, currentSeason, amount, "");
  }

  function startNewSeason() external onlyOwner {
    currentSeason += 1;
  }

  function setTicketPrice(uint newPrice) external onlyOwner {
    currentTicketPrice = newPrice;
  }

  function setTicketLimit(uint newLimit) external onlyOwner {
    currentTicketLimit = newLimit;
  }

  function toggleSaleActive() external onlyOwner {
    saleActive = !saleActive;
  }

  function updateImageURI(string memory newImageURI) external onlyOwner {
    _imageURI = newImageURI;
  }

  function updateWithdrawalAddress(address newAddress) external onlyOwner {
    _withdrawalAddress = newAddress;
  }

  function withdraw() external onlyOwner {
    require(address(this).balance > 0, "No balance to withdraw.");
    
    (bool success, ) = _withdrawalAddress.call{value: address(this).balance}("");
    require(success, "Withdrawal failed.");
  }

  function uri(uint256 season)
    public
    view                
    override
    returns (string memory)
  {
    require(season > 0 && season <= currentSeason, "URI requested for invalid racing season");

    string memory json = string(abi.encodePacked('{"name": "NMB Dash Race Ticket - Season ', season.toString(), '", "description": "NMB Dash will have Arabian Camels, the Monsters Rehab gang, and Baby Camels teaming up to race to the podium. On your marks racers...", "image": "', _imageURI, '"}'));
    
    string memory output = string(abi.encodePacked('data:application/json;utf8,', json));

    return output;
  }
}

File 2 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

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

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 3 of 13 : 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 4 of 13 : 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 5 of 13 : 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 6 of 13 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates weither any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}

File 7 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"imageURI","type":"string"},{"internalType":"address","name":"withdrawalAddress","type":"address"},{"internalType":"address","name":"camelContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyTickets","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"camelContract","outputs":[{"internalType":"contract ICamel","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTicketLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTicketPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setTicketLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTicketPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startNewSeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newImageURI","type":"string"}],"name":"updateImageURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"season","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160065566354a6ba7a1800060075560d86008556009805460ff191690553480156200003057600080fd5b50604051620026ec380380620026ec8339810160408190526200005391620001ee565b6040805160208101909152600081526200006d33620000c2565b620000788162000112565b5082516200008e90600a9060208601906200012b565b50600b80546001600160a01b039384166001600160a01b03199182161790915560058054929093169116179055506200033e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8051620001279060039060208401906200012b565b5050565b8280546200013990620002eb565b90600052602060002090601f0160209004810192826200015d5760008555620001a8565b82601f106200017857805160ff1916838001178555620001a8565b82800160010185558215620001a8579182015b82811115620001a85782518255916020019190600101906200018b565b50620001b6929150620001ba565b5090565b5b80821115620001b65760008155600101620001bb565b80516001600160a01b0381168114620001e957600080fd5b919050565b60008060006060848603121562000203578283fd5b83516001600160401b03808211156200021a578485fd5b818601915086601f8301126200022e578485fd5b81518181111562000243576200024362000328565b604051601f8201601f19908116603f011681019083821181831017156200026e576200026e62000328565b816040528281526020935089848487010111156200028a578788fd5b8791505b82821015620002ad57848201840151818301850152908301906200028e565b82821115620002be57878484830101525b9650620002d0915050868201620001d1565b93505050620002e260408501620001d1565b90509250925092565b600181811c908216806200030057607f821691505b602082108114156200032257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61239e806200034e6000396000f3fe6080604052600436106101805760003560e01c80635e72fc5d116100d1578063bcb396211161008a578063e985e9c511610064578063e985e9c514610463578063edadafe4146104ac578063f242432a146104c2578063f2fde38b146104e257600080fd5b8063bcb396211461040a578063bd85b03914610420578063e01591061461044d57600080fd5b80635e72fc5d1461036857806368428a1b14610388578063715018a6146103a25780638da5cb5b146103b7578063a22cb465146103d5578063b6ceb61f146103f557600080fd5b80632f3666371161013e5780633d3751ae116101185780633d3751ae146102cc5780634e1273f4146102ec5780634f558e791461031957806353891fcd1461034857600080fd5b80632f3666371461028f5780633100a535146102a25780633ccfd60b146102b757600080fd5b8062fdd58e1461018557806301ffc9a7146101b85780630e89341c146101e8578063159816501461021557806320d94217146102375780632eb2c2d61461026f575b600080fd5b34801561019157600080fd5b506101a56101a0366004611b0e565b610502565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d3366004611c02565b61059b565b60405190151581526020016101af565b3480156101f457600080fd5b50610208610203366004611c80565b6105ed565b6040516101af9190612002565b34801561022157600080fd5b50610235610230366004611c80565b6106b7565b005b34801561024357600080fd5b50600554610257906001600160a01b031681565b6040516001600160a01b0390911681526020016101af565b34801561027b57600080fd5b5061023561028a3660046119cb565b6106e6565b61023561029d366004611c80565b61077d565b3480156102ae57600080fd5b5061023561098a565b3480156102c357600080fd5b506102356109c8565b3480156102d857600080fd5b506102356102e7366004611c80565b610ada565b3480156102f857600080fd5b5061030c610307366004611b37565b610b09565b6040516101af9190611fc1565b34801561032557600080fd5b506101d8610334366004611c80565b600090815260046020526040902054151590565b34801561035457600080fd5b50610235610363366004611c3a565b610c6b565b34801561037457600080fd5b5061023561038336600461197f565b610cac565b34801561039457600080fd5b506009546101d89060ff1681565b3480156103ae57600080fd5b50610235610cf8565b3480156103c357600080fd5b506000546001600160a01b0316610257565b3480156103e157600080fd5b506102356103f0366004611ad4565b610d2e565b34801561040157600080fd5b50610235610e05565b34801561041657600080fd5b506101a560065481565b34801561042c57600080fd5b506101a561043b366004611c80565b60009081526004602052604090205490565b34801561045957600080fd5b506101a560075481565b34801561046f57600080fd5b506101d861047e366004611999565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b3480156104b857600080fd5b506101a560085481565b3480156104ce57600080fd5b506102356104dd366004611a71565b610e49565b3480156104ee57600080fd5b506102356104fd36600461197f565b610ed0565b60006001600160a01b0383166105735760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105cc57506001600160e01b031982166303a24d0760e21b145b806105e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008211801561060157506006548211155b61065d5760405162461bcd60e51b815260206004820152602760248201527f5552492072657175657374656420666f7220696e76616c696420726163696e676044820152661039b2b0b9b7b760c91b606482015260840161056a565b600061066883610f68565b600a60405160200161067b929190611d5b565b604051602081830303815290604052905060008160405160200161069f9190611d16565b60408051601f19818403018152919052949350505050565b6000546001600160a01b031633146106e15760405162461bcd60e51b815260040161056a906120ec565b600755565b6001600160a01b0385163314806107025750610702853361047e565b6107695760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161056a565b610776858585858561108a565b5050505050565b60095460ff166107c45760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161056a565b6007546107d19082611286565b3410156108175760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b604482015260640161056a565b6008548161083360065460009081526004602052604090205490565b61083d9190612145565b111561088b5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768207469636b657473206c656674000000000000000000604482015260640161056a565b61089733600654610502565b6108a19082612145565b6005546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b1580156108e457600080fd5b505afa1580156108f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091c9190611c98565b101561096a5760405162461bcd60e51b815260206004820152601760248201527f446f6e2774206f776e20656e6f7567682063616d656c73000000000000000000604482015260640161056a565b610987336006548360405180602001604052806000815250611299565b50565b6000546001600160a01b031633146109b45760405162461bcd60e51b815260040161056a906120ec565b6009805460ff19811660ff90911615179055565b6000546001600160a01b031633146109f25760405162461bcd60e51b815260040161056a906120ec565b60004711610a425760405162461bcd60e51b815260206004820152601760248201527f4e6f2062616c616e636520746f2077697468647261772e000000000000000000604482015260640161056a565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b50509050806109875760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bbb0b6103330b4b632b21760711b604482015260640161056a565b6000546001600160a01b03163314610b045760405162461bcd60e51b815260040161056a906120ec565b600855565b60608151835114610b6e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161056a565b6000835167ffffffffffffffff811115610b9857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bc1578160200160208202803683370190505b50905060005b8451811015610c6357610c28858281518110610bf357634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610c1b57634e487b7160e01b600052603260045260246000fd5b6020026020010151610502565b828281518110610c4857634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610c5c8161223f565b9050610bc7565b509392505050565b6000546001600160a01b03163314610c955760405162461bcd60e51b815260040161056a906120ec565b8051610ca890600a9060208401906117d9565b5050565b6000546001600160a01b03163314610cd65760405162461bcd60e51b815260040161056a906120ec565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d225760405162461bcd60e51b815260040161056a906120ec565b610d2c60006112ce565b565b336001600160a01b0383161415610d995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161056a565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161056a906120ec565b600160066000828254610e429190612145565b9091555050565b6001600160a01b038516331480610e655750610e65853361047e565b610ec35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161056a565b610776858585858561131e565b6000546001600160a01b03163314610efa5760405162461bcd60e51b815260040161056a906120ec565b6001600160a01b038116610f5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b610987816112ce565b606081610f8c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fb65780610fa08161223f565b9150610faf9050600a8361215d565b9150610f90565b60008167ffffffffffffffff811115610fdf57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611009576020820181803683370190505b5090505b84156110825761101e600183612190565b915061102b600a8661225a565b611036906030612145565b60f81b81838151811061105957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061107b600a8661215d565b945061100d565b949350505050565b81518351146110ec5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161056a565b6001600160a01b0384166111125760405162461bcd60e51b815260040161056a9061205d565b3360005b845181101561121857600085828151811061114157634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061116d57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156111be5760405162461bcd60e51b815260040161056a906120a2565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906111fd908490612145565b92505081905550505050806112119061223f565b9050611116565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611268929190611fd4565b60405180910390a461127e818787878787611448565b505050505050565b60006112928284612171565b9392505050565b6112a5848484846115b3565b600083815260046020526040812080548492906112c3908490612145565b909155505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0384166113445760405162461bcd60e51b815260040161056a9061205d565b3361135d818787611354886116b6565b610776886116b6565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156113a05760405162461bcd60e51b815260040161056a906120a2565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906113df908490612145565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461143f82888888888861170f565b50505050505050565b6001600160a01b0384163b1561127e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061148c9089908990889088908890600401611f2a565b602060405180830381600087803b1580156114a657600080fd5b505af19250505080156114d6575060408051601f3d908101601f191682019092526114d391810190611c1e565b60015b611583576114e26122b0565b806308c379a0141561151c57506114f76122c8565b80611502575061151e565b8060405162461bcd60e51b815260040161056a9190612002565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161056a565b6001600160e01b0319811663bc197c8160e01b1461143f5760405162461bcd60e51b815260040161056a90612015565b6001600160a01b0384166116135760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161056a565b3361162481600087611354886116b6565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611656908490612145565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107768160008787878761170f565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116fe57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b1561127e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117539089908990889088908890600401611f7c565b602060405180830381600087803b15801561176d57600080fd5b505af192505050801561179d575060408051601f3d908101601f1916820190925261179a91810190611c1e565b60015b6117a9576114e26122b0565b6001600160e01b0319811663f23a6e6160e01b1461143f5760405162461bcd60e51b815260040161056a90612015565b8280546117e5906121d7565b90600052602060002090601f016020900481019282611807576000855561184d565b82601f1061182057805160ff191683800117855561184d565b8280016001018555821561184d579182015b8281111561184d578251825591602001919060010190611832565b5061185992915061185d565b5090565b5b80821115611859576000815560010161185e565b600067ffffffffffffffff83111561188c5761188c61229a565b6040516118a3601f8501601f191660200182612212565b8091508381528484840111156118b857600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146118e757600080fd5b919050565b600082601f8301126118fc578081fd5b8135602061190982612121565b6040516119168282612212565b8381528281019150858301600585901b87018401881015611935578586fd5b855b8581101561195357813584529284019290840190600101611937565b5090979650505050505050565b600082601f830112611970578081fd5b61129283833560208501611872565b600060208284031215611990578081fd5b611292826118d0565b600080604083850312156119ab578081fd5b6119b4836118d0565b91506119c2602084016118d0565b90509250929050565b600080600080600060a086880312156119e2578081fd5b6119eb866118d0565b94506119f9602087016118d0565b9350604086013567ffffffffffffffff80821115611a15578283fd5b611a2189838a016118ec565b94506060880135915080821115611a36578283fd5b611a4289838a016118ec565b93506080880135915080821115611a57578283fd5b50611a6488828901611960565b9150509295509295909350565b600080600080600060a08688031215611a88578081fd5b611a91866118d0565b9450611a9f602087016118d0565b93506040860135925060608601359150608086013567ffffffffffffffff811115611ac8578182fd5b611a6488828901611960565b60008060408385031215611ae6578182fd5b611aef836118d0565b915060208301358015158114611b03578182fd5b809150509250929050565b60008060408385031215611b20578182fd5b611b29836118d0565b946020939093013593505050565b60008060408385031215611b49578182fd5b823567ffffffffffffffff80821115611b60578384fd5b818501915085601f830112611b73578384fd5b81356020611b8082612121565b604051611b8d8282612212565b8381528281019150858301600585901b870184018b1015611bac578889fd5b8896505b84871015611bd557611bc1816118d0565b835260019690960195918301918301611bb0565b5096505086013592505080821115611beb578283fd5b50611bf8858286016118ec565b9150509250929050565b600060208284031215611c13578081fd5b813561129281612352565b600060208284031215611c2f578081fd5b815161129281612352565b600060208284031215611c4b578081fd5b813567ffffffffffffffff811115611c61578182fd5b8201601f81018413611c71578182fd5b61108284823560208401611872565b600060208284031215611c91578081fd5b5035919050565b600060208284031215611ca9578081fd5b5051919050565b6000815180845260208085019450808401835b83811015611cdf57815187529582019590820190600101611cc3565b509495945050505050565b60008151808452611d028160208601602086016121a7565b601f01601f19169290920160200192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815260008251611d4e81601b8501602087016121a7565b91909101601b0192915050565b7f7b226e616d65223a20224e4d4220446173682052616365205469636b6574202d8152600060206701029b2b0b9b7b7160c51b818401528451611da481602886018489016121a7565b7f222c20226465736372697074696f6e223a20224e4d4220446173682077696c6c6028918501918201527f2068617665204172616269616e2043616d656c732c20746865204d6f6e73746560488201527f72732052656861622067616e672c20616e6420426162792043616d656c73207460688201527f65616d696e6720757020746f207261636520746f2074686520706f6469756d2e60888201527f204f6e20796f7572206d61726b73207261636572732e2e2e222c2022696d616760a88201526432911d101160d91b60c8820152845460cd908490600181811c9080831680611e9057607f831692505b878310811415611eae57634e487b7160e01b89526022600452602489fd5b808015611ec25760018114611ed757611f07565b60ff1985168888015283880187019550611f07565b60008c8152602090208a5b85811015611efd5781548a82018a0152908401908a01611ee2565b5050868489010195505b5050505050611f1e8161227d60f01b815260020190565b98975050505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611f5690830186611cb0565b8281036060840152611f688186611cb0565b90508281036080840152611f1e8185611cea565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611fb690830184611cea565b979650505050505050565b6020815260006112926020830184611cb0565b604081526000611fe76040830185611cb0565b8281036020840152611ff98185611cb0565b95945050505050565b6020815260006112926020830184611cea565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff82111561213b5761213b61229a565b5060051b60200190565b600082198211156121585761215861226e565b500190565b60008261216c5761216c612284565b500490565b600081600019048311821515161561218b5761218b61226e565b500290565b6000828210156121a2576121a261226e565b500390565b60005b838110156121c25781810151838201526020016121aa565b838111156121d1576000848401525b50505050565b600181811c908216806121eb57607f821691505b6020821081141561220c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156122385761223861229a565b6040525050565b60006000198214156122535761225361226e565b5060010190565b60008261226957612269612284565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156122c557600481823e5160e01c5b90565b600060443d10156122d65790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561230657505050505090565b828501915081518181111561231e5750505050505090565b843d87010160208285010111156123385750505050505090565b61234760208286010187612212565b509095945050505050565b6001600160e01b03198116811461098757600080fdfea2646970667358221220879df6ec4ba038909250bee2e85ea457b24a97fa859edec171b9cd949475d10764736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000019a636f9640d3c1ce443e81969c4fc0953b3c3f40000000000000000000000003b3bc9b1dd9f3c8716fff083947b8769e2ff97810000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6534575579364367783456524d6d655339645176523657336842415a61764a4d767079694237536d707665690000000000000000000000

Deployed Bytecode

0x6080604052600436106101805760003560e01c80635e72fc5d116100d1578063bcb396211161008a578063e985e9c511610064578063e985e9c514610463578063edadafe4146104ac578063f242432a146104c2578063f2fde38b146104e257600080fd5b8063bcb396211461040a578063bd85b03914610420578063e01591061461044d57600080fd5b80635e72fc5d1461036857806368428a1b14610388578063715018a6146103a25780638da5cb5b146103b7578063a22cb465146103d5578063b6ceb61f146103f557600080fd5b80632f3666371161013e5780633d3751ae116101185780633d3751ae146102cc5780634e1273f4146102ec5780634f558e791461031957806353891fcd1461034857600080fd5b80632f3666371461028f5780633100a535146102a25780633ccfd60b146102b757600080fd5b8062fdd58e1461018557806301ffc9a7146101b85780630e89341c146101e8578063159816501461021557806320d94217146102375780632eb2c2d61461026f575b600080fd5b34801561019157600080fd5b506101a56101a0366004611b0e565b610502565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d3366004611c02565b61059b565b60405190151581526020016101af565b3480156101f457600080fd5b50610208610203366004611c80565b6105ed565b6040516101af9190612002565b34801561022157600080fd5b50610235610230366004611c80565b6106b7565b005b34801561024357600080fd5b50600554610257906001600160a01b031681565b6040516001600160a01b0390911681526020016101af565b34801561027b57600080fd5b5061023561028a3660046119cb565b6106e6565b61023561029d366004611c80565b61077d565b3480156102ae57600080fd5b5061023561098a565b3480156102c357600080fd5b506102356109c8565b3480156102d857600080fd5b506102356102e7366004611c80565b610ada565b3480156102f857600080fd5b5061030c610307366004611b37565b610b09565b6040516101af9190611fc1565b34801561032557600080fd5b506101d8610334366004611c80565b600090815260046020526040902054151590565b34801561035457600080fd5b50610235610363366004611c3a565b610c6b565b34801561037457600080fd5b5061023561038336600461197f565b610cac565b34801561039457600080fd5b506009546101d89060ff1681565b3480156103ae57600080fd5b50610235610cf8565b3480156103c357600080fd5b506000546001600160a01b0316610257565b3480156103e157600080fd5b506102356103f0366004611ad4565b610d2e565b34801561040157600080fd5b50610235610e05565b34801561041657600080fd5b506101a560065481565b34801561042c57600080fd5b506101a561043b366004611c80565b60009081526004602052604090205490565b34801561045957600080fd5b506101a560075481565b34801561046f57600080fd5b506101d861047e366004611999565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b3480156104b857600080fd5b506101a560085481565b3480156104ce57600080fd5b506102356104dd366004611a71565b610e49565b3480156104ee57600080fd5b506102356104fd36600461197f565b610ed0565b60006001600160a01b0383166105735760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105cc57506001600160e01b031982166303a24d0760e21b145b806105e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008211801561060157506006548211155b61065d5760405162461bcd60e51b815260206004820152602760248201527f5552492072657175657374656420666f7220696e76616c696420726163696e676044820152661039b2b0b9b7b760c91b606482015260840161056a565b600061066883610f68565b600a60405160200161067b929190611d5b565b604051602081830303815290604052905060008160405160200161069f9190611d16565b60408051601f19818403018152919052949350505050565b6000546001600160a01b031633146106e15760405162461bcd60e51b815260040161056a906120ec565b600755565b6001600160a01b0385163314806107025750610702853361047e565b6107695760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161056a565b610776858585858561108a565b5050505050565b60095460ff166107c45760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161056a565b6007546107d19082611286565b3410156108175760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b604482015260640161056a565b6008548161083360065460009081526004602052604090205490565b61083d9190612145565b111561088b5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768207469636b657473206c656674000000000000000000604482015260640161056a565b61089733600654610502565b6108a19082612145565b6005546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b1580156108e457600080fd5b505afa1580156108f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091c9190611c98565b101561096a5760405162461bcd60e51b815260206004820152601760248201527f446f6e2774206f776e20656e6f7567682063616d656c73000000000000000000604482015260640161056a565b610987336006548360405180602001604052806000815250611299565b50565b6000546001600160a01b031633146109b45760405162461bcd60e51b815260040161056a906120ec565b6009805460ff19811660ff90911615179055565b6000546001600160a01b031633146109f25760405162461bcd60e51b815260040161056a906120ec565b60004711610a425760405162461bcd60e51b815260206004820152601760248201527f4e6f2062616c616e636520746f2077697468647261772e000000000000000000604482015260640161056a565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b50509050806109875760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bbb0b6103330b4b632b21760711b604482015260640161056a565b6000546001600160a01b03163314610b045760405162461bcd60e51b815260040161056a906120ec565b600855565b60608151835114610b6e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161056a565b6000835167ffffffffffffffff811115610b9857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bc1578160200160208202803683370190505b50905060005b8451811015610c6357610c28858281518110610bf357634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610c1b57634e487b7160e01b600052603260045260246000fd5b6020026020010151610502565b828281518110610c4857634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610c5c8161223f565b9050610bc7565b509392505050565b6000546001600160a01b03163314610c955760405162461bcd60e51b815260040161056a906120ec565b8051610ca890600a9060208401906117d9565b5050565b6000546001600160a01b03163314610cd65760405162461bcd60e51b815260040161056a906120ec565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d225760405162461bcd60e51b815260040161056a906120ec565b610d2c60006112ce565b565b336001600160a01b0383161415610d995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161056a565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161056a906120ec565b600160066000828254610e429190612145565b9091555050565b6001600160a01b038516331480610e655750610e65853361047e565b610ec35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161056a565b610776858585858561131e565b6000546001600160a01b03163314610efa5760405162461bcd60e51b815260040161056a906120ec565b6001600160a01b038116610f5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b610987816112ce565b606081610f8c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fb65780610fa08161223f565b9150610faf9050600a8361215d565b9150610f90565b60008167ffffffffffffffff811115610fdf57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611009576020820181803683370190505b5090505b84156110825761101e600183612190565b915061102b600a8661225a565b611036906030612145565b60f81b81838151811061105957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061107b600a8661215d565b945061100d565b949350505050565b81518351146110ec5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161056a565b6001600160a01b0384166111125760405162461bcd60e51b815260040161056a9061205d565b3360005b845181101561121857600085828151811061114157634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061116d57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156111be5760405162461bcd60e51b815260040161056a906120a2565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906111fd908490612145565b92505081905550505050806112119061223f565b9050611116565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611268929190611fd4565b60405180910390a461127e818787878787611448565b505050505050565b60006112928284612171565b9392505050565b6112a5848484846115b3565b600083815260046020526040812080548492906112c3908490612145565b909155505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0384166113445760405162461bcd60e51b815260040161056a9061205d565b3361135d818787611354886116b6565b610776886116b6565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156113a05760405162461bcd60e51b815260040161056a906120a2565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906113df908490612145565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461143f82888888888861170f565b50505050505050565b6001600160a01b0384163b1561127e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061148c9089908990889088908890600401611f2a565b602060405180830381600087803b1580156114a657600080fd5b505af19250505080156114d6575060408051601f3d908101601f191682019092526114d391810190611c1e565b60015b611583576114e26122b0565b806308c379a0141561151c57506114f76122c8565b80611502575061151e565b8060405162461bcd60e51b815260040161056a9190612002565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161056a565b6001600160e01b0319811663bc197c8160e01b1461143f5760405162461bcd60e51b815260040161056a90612015565b6001600160a01b0384166116135760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161056a565b3361162481600087611354886116b6565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611656908490612145565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107768160008787878761170f565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116fe57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b1561127e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117539089908990889088908890600401611f7c565b602060405180830381600087803b15801561176d57600080fd5b505af192505050801561179d575060408051601f3d908101601f1916820190925261179a91810190611c1e565b60015b6117a9576114e26122b0565b6001600160e01b0319811663f23a6e6160e01b1461143f5760405162461bcd60e51b815260040161056a90612015565b8280546117e5906121d7565b90600052602060002090601f016020900481019282611807576000855561184d565b82601f1061182057805160ff191683800117855561184d565b8280016001018555821561184d579182015b8281111561184d578251825591602001919060010190611832565b5061185992915061185d565b5090565b5b80821115611859576000815560010161185e565b600067ffffffffffffffff83111561188c5761188c61229a565b6040516118a3601f8501601f191660200182612212565b8091508381528484840111156118b857600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146118e757600080fd5b919050565b600082601f8301126118fc578081fd5b8135602061190982612121565b6040516119168282612212565b8381528281019150858301600585901b87018401881015611935578586fd5b855b8581101561195357813584529284019290840190600101611937565b5090979650505050505050565b600082601f830112611970578081fd5b61129283833560208501611872565b600060208284031215611990578081fd5b611292826118d0565b600080604083850312156119ab578081fd5b6119b4836118d0565b91506119c2602084016118d0565b90509250929050565b600080600080600060a086880312156119e2578081fd5b6119eb866118d0565b94506119f9602087016118d0565b9350604086013567ffffffffffffffff80821115611a15578283fd5b611a2189838a016118ec565b94506060880135915080821115611a36578283fd5b611a4289838a016118ec565b93506080880135915080821115611a57578283fd5b50611a6488828901611960565b9150509295509295909350565b600080600080600060a08688031215611a88578081fd5b611a91866118d0565b9450611a9f602087016118d0565b93506040860135925060608601359150608086013567ffffffffffffffff811115611ac8578182fd5b611a6488828901611960565b60008060408385031215611ae6578182fd5b611aef836118d0565b915060208301358015158114611b03578182fd5b809150509250929050565b60008060408385031215611b20578182fd5b611b29836118d0565b946020939093013593505050565b60008060408385031215611b49578182fd5b823567ffffffffffffffff80821115611b60578384fd5b818501915085601f830112611b73578384fd5b81356020611b8082612121565b604051611b8d8282612212565b8381528281019150858301600585901b870184018b1015611bac578889fd5b8896505b84871015611bd557611bc1816118d0565b835260019690960195918301918301611bb0565b5096505086013592505080821115611beb578283fd5b50611bf8858286016118ec565b9150509250929050565b600060208284031215611c13578081fd5b813561129281612352565b600060208284031215611c2f578081fd5b815161129281612352565b600060208284031215611c4b578081fd5b813567ffffffffffffffff811115611c61578182fd5b8201601f81018413611c71578182fd5b61108284823560208401611872565b600060208284031215611c91578081fd5b5035919050565b600060208284031215611ca9578081fd5b5051919050565b6000815180845260208085019450808401835b83811015611cdf57815187529582019590820190600101611cc3565b509495945050505050565b60008151808452611d028160208601602086016121a7565b601f01601f19169290920160200192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815260008251611d4e81601b8501602087016121a7565b91909101601b0192915050565b7f7b226e616d65223a20224e4d4220446173682052616365205469636b6574202d8152600060206701029b2b0b9b7b7160c51b818401528451611da481602886018489016121a7565b7f222c20226465736372697074696f6e223a20224e4d4220446173682077696c6c6028918501918201527f2068617665204172616269616e2043616d656c732c20746865204d6f6e73746560488201527f72732052656861622067616e672c20616e6420426162792043616d656c73207460688201527f65616d696e6720757020746f207261636520746f2074686520706f6469756d2e60888201527f204f6e20796f7572206d61726b73207261636572732e2e2e222c2022696d616760a88201526432911d101160d91b60c8820152845460cd908490600181811c9080831680611e9057607f831692505b878310811415611eae57634e487b7160e01b89526022600452602489fd5b808015611ec25760018114611ed757611f07565b60ff1985168888015283880187019550611f07565b60008c8152602090208a5b85811015611efd5781548a82018a0152908401908a01611ee2565b5050868489010195505b5050505050611f1e8161227d60f01b815260020190565b98975050505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611f5690830186611cb0565b8281036060840152611f688186611cb0565b90508281036080840152611f1e8185611cea565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611fb690830184611cea565b979650505050505050565b6020815260006112926020830184611cb0565b604081526000611fe76040830185611cb0565b8281036020840152611ff98185611cb0565b95945050505050565b6020815260006112926020830184611cea565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff82111561213b5761213b61229a565b5060051b60200190565b600082198211156121585761215861226e565b500190565b60008261216c5761216c612284565b500490565b600081600019048311821515161561218b5761218b61226e565b500290565b6000828210156121a2576121a261226e565b500390565b60005b838110156121c25781810151838201526020016121aa565b838111156121d1576000848401525b50505050565b600181811c908216806121eb57607f821691505b6020821081141561220c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156122385761223861229a565b6040525050565b60006000198214156122535761225361226e565b5060010190565b60008261226957612269612284565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156122c557600481823e5160e01c5b90565b600060443d10156122d65790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561230657505050505090565b828501915081518181111561231e5750505050505090565b843d87010160208285010111156123385750505050505090565b61234760208286010187612212565b509095945050505050565b6001600160e01b03198116811461098757600080fdfea2646970667358221220879df6ec4ba038909250bee2e85ea457b24a97fa859edec171b9cd949475d10764736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000019a636f9640d3c1ce443e81969c4fc0953b3c3f40000000000000000000000003b3bc9b1dd9f3c8716fff083947b8769e2ff97810000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6534575579364367783456524d6d655339645176523657336842415a61764a4d767079694237536d707665690000000000000000000000

-----Decoded View---------------
Arg [0] : imageURI (string): ipfs://Qme4WUy6Cgx4VRMmeS9dQvR6W3hBAZavJMvpyiB7Smpvei
Arg [1] : withdrawalAddress (address): 0x19A636F9640D3c1CE443e81969c4fC0953b3c3f4
Arg [2] : camelContractAddress (address): 0x3B3Bc9b1dD9F3C8716Fff083947b8769e2ff9781

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000019a636f9640d3c1ce443e81969c4fc0953b3c3f4
Arg [2] : 0000000000000000000000003b3bc9b1dd9f3c8716fff083947b8769e2ff9781
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d6534575579364367783456524d6d655339645176523657
Arg [5] : 336842415a61764a4d767079694237536d707665690000000000000000000000


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.