ETH Price: $3,269.54 (+4.68%)
Gas: 3 Gwei

Token

BAZ (BAZ)
 

Overview

Max Total Supply

3,053 BAZ

Holders

604

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
21 BAZ
0x037175fc9104f0ec4edee1c098a070a61e41938d
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:
BAZ

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 17: BAZ.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./IERC20.sol";
import "./ERC20.sol";

contract BAZ is ERC721A, Ownable {

  using SafeMath for uint256;

  uint256 public maxMint;
  uint256 public maxTokens;
  mapping (address => bool) private whitelist;
  uint256 totalWhitelist = 0;
  uint256 whitelistMintMax = 3;
  address payable foundersWallet;
  address payable artistWallet;
  uint256 maxPresaleMint = 4;
  bool apeSaleIsActive = false;
  bool public saleIsActive = false;
  uint256 public mintEthPrice = .09 ether;
  uint256 public mintApePrice = 24;
  address tokenAddress = 0x4d224452801ACEd8B2F0aebE155379bb5D594381;
  uint private artistShare;

  constructor(uint256 initialSupply, uint256 maxTotalMints, address payable artist, address payable founders ) ERC721A("BAZ", "BAZ") {
    maxTokens = initialSupply;
    maxMint = maxTotalMints;
    artistWallet = artist;
    foundersWallet = founders;
  }

  function withdraw() external onlyFounders {
    require(artistShare > 0, "Set artist share");
    require(address(this).balance > 0, "This contract has no balance");

    artistWallet.transfer(address(this).balance.mul(artistShare).div(100));
    foundersWallet.transfer(address(this).balance);

  }

  function getArtistShare() external view onlyFounders returns (uint256) {
    return artistShare;
  }

  function setArtistShare(uint256 intPercentage) external onlyOwner {
    require (artistShare >=0  && artistShare<101, "Value must between 0 and 100");
    artistShare = intPercentage;
  }

  modifier onlyFounders() {
    require(msg.sender == artistWallet || msg.sender == foundersWallet);
    _;
  }

  // overriding startTokenId() to set starting token index to 1
  function _startTokenId() internal view virtual override returns (uint256){
    return 1;
  }

  // reserve 50 tokens to deployer wallet
  function reserveMint() external onlyOwner {      
    require(totalSupply().add(50) <= maxTokens, "Purchase would exceed max supply of tokens");      
    _safeMint(msg.sender, 50);
  }

  function mint(uint256 quantity) public payable {

    require(saleIsActive || whitelist[msg.sender], "You cannot mint at this time"); 

    uint mintLimit;
    if (!saleIsActive) {
      mintLimit = 3;
      require(balanceOf(msg.sender) < whitelistMintMax, "You exceeded your whitelist maximum");
    } else {
      mintLimit = maxTokens;
    }

    require(quantity > 0, "Must mint at least 1 token");
    require(quantity <= mintLimit, "You cannot that amount of tokens");
    require(totalSupply().add(quantity) <= maxTokens, "Purchase would exceed max supply of tokens");
    require(mintEthPrice.mul(quantity) <= msg.value, "Ether value sent is not correct");

    // _safeMint's second argument now takes in a quantity, not a tokenId.
    _safeMint(msg.sender, quantity);
  }

  function apeMint(uint256 quantity) public {
    
    require(saleIsActive || whitelist[msg.sender], "You cannot mint at this time");
    require(apeSaleIsActive, "You cannot use ApeCoin at this time");
    require(quantity > 0, "Must mint at least 1 token");
    require(quantity <= maxMint, "Can only mint 20 tokens at a time");
    require(totalSupply().add(quantity) <= maxTokens, "Purchase would exceed max supply of tokens");

    uint256 mintPrice = quantity.mul(mintApePrice); 

    IERC20 paymentToken = IERC20(tokenAddress);
 
    require(paymentToken.allowance(msg.sender, address(this)) >= quantity.mul(mintApePrice),"Insuficient Allowance");
    require(paymentToken.transferFrom(msg.sender, address(this), mintPrice),"transfer Failed");

    // _safeMint's second argument now takes in a quantity, not a tokenId.
    _safeMint(msg.sender, quantity);    

  }

  function flipApeSaleState() external onlyOwner {
    apeSaleIsActive = !apeSaleIsActive;
  }

  function getApeSaleState() external view onlyOwner returns (bool)  {
    return apeSaleIsActive;
  }

  function flipSaleState() external onlyOwner {    
    saleIsActive = !saleIsActive;
  }

  function getSaleState() public view returns (bool) {
    return saleIsActive;
  }

  function setApePrice(uint256 newPrice) external onlyOwner {
    require(newPrice > 0, 'Must set Price Above 0 $APE');
    mintApePrice = newPrice;
  }

  function getApePrice() public view returns (uint256) {
    return mintApePrice;
  }

  function getTotalApePrice( uint256 quantity ) public view returns (uint256){
    return mintApePrice.mul(quantity);
  }

  function updateWhitelist(address[] calldata _addresses) external onlyOwner {    
    for (uint i=0; i<_addresses.length; i++) {
         whitelist[_addresses[i]] = true;
         totalWhitelist++;
      }
  }

  function getWhitelistSize() external view onlyOwner returns (uint256){
    return totalWhitelist;
  }

  function getWhitelistAddress(address _address) external view onlyOwner returns (bool){
    return whitelist[_address];
  }

  function setWhitelistMintMax(uint256 newMax) external onlyOwner {
    whitelistMintMax = newMax;
  }

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 4 of 17: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 17: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


File 6 of 17: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

File 7 of 17: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 17: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


File 9 of 17: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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


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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"maxTotalMints","type":"uint256"},{"internalType":"address payable","name":"artist","type":"address"},{"internalType":"address payable","name":"founders","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"apeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipApeSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getApePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getApeSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getArtistShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getTotalApePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getWhitelistAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintApePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEthPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setApePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"intPercentage","type":"uint256"}],"name":"setArtistShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setWhitelistMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c556003600d5560046010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555067013fbe85edc900006012556018601355734d224452801aced8b2f0aebe155379bb5d594381601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bc57600080fd5b5060405162004cf738038062004cf78339818101604052810190620000e2919062000407565b6040518060400160405280600381526020017f42415a00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42415a000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200016692919062000329565b5080600390805190602001906200017f92919062000329565b50620001906200025260201b60201c565b6000819055505050620001b8620001ac6200025b60201b60201c565b6200026360201b60201c565b83600a819055508260098190555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050506200054a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033790620004b1565b90600052602060002090601f0160209004810192826200035b5760008555620003a7565b82601f106200037657805160ff1916838001178555620003a7565b82800160010185558215620003a7579182015b82811115620003a657825182559160200191906001019062000389565b5b509050620003b69190620003ba565b5090565b5b80821115620003d5576000816000905550600101620003bb565b5090565b600081519050620003ea8162000516565b92915050565b600081519050620004018162000530565b92915050565b600080600080608085870312156200041e57600080fd5b60006200042e87828801620003f0565b94505060206200044187828801620003f0565b93505060406200045487828801620003d9565b92505060606200046787828801620003d9565b91505092959194509250565b6000620004808262000487565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620004ca57607f821691505b60208210811415620004e157620004e0620004e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620005218162000473565b81146200052d57600080fd5b50565b6200053b81620004a7565b81146200054757600080fd5b50565b61479d806200055a6000396000f3fe60806040526004361061022f5760003560e01c8063715018a61161012e578063a22cb465116100ab578063d19473171161006f578063d1947317146107f5578063e83157421461080c578063e985e9c514610837578063eb8d244414610874578063f2fde38b1461089f5761022f565b8063a22cb46514610712578063a98534911461073b578063aee5d0ac14610766578063b88d4fde1461078f578063c87b56dd146107b85761022f565b806399db89b5116100f257806399db89b51461064a5780639b4bca6b146106755780639c9df017146106a0578063a0712d68146106cb578063a0c8e62a146106e75761022f565b8063715018a6146105895780637501f741146105a05780637eeab095146105cb5780638da5cb5b146105f457806395d89b411461061f5761022f565b806325bdb2a8116101bc5780634774f98c116101805780634774f98c1461047e57806350e31693146104bb5780636352211e146104e65780636cfec76a1461052357806370a082311461054c5761022f565b806325bdb2a8146103d357806334918dfd146103fe57806335377214146104155780633ccfd60b1461043e57806342842e0e146104555761022f565b8063095ea7b311610203578063095ea7b31461031657806318160ddd1461033f5780631dfa86391461036a57806321c8d6761461039357806323b872dd146103aa5761022f565b8062764f9e1461023457806301ffc9a71461027157806306fdde03146102ae578063081812fc146102d9575b600080fd5b34801561024057600080fd5b5061025b60048036038101906102569190613626565b6108c8565b6040516102689190613cf8565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061383b565b61099a565b6040516102a59190613cf8565b60405180910390f35b3480156102ba57600080fd5b506102c3610a7c565b6040516102d09190613d13565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061388d565b610b0e565b60405161030d9190613c31565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190613791565b610b8a565b005b34801561034b57600080fd5b50610354610c95565b6040516103619190613f35565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061388d565b610cac565b005b34801561039f57600080fd5b506103a8610d32565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061368b565b610e1a565b005b3480156103df57600080fd5b506103e8610e2a565b6040516103f59190613cf8565b60405180910390f35b34801561040a57600080fd5b50610413610e41565b005b34801561042157600080fd5b5061043c600480360381019061043791906137cd565b610ee9565b005b34801561044a57600080fd5b50610453611048565b005b34801561046157600080fd5b5061047c6004803603810190610477919061368b565b61127d565b005b34801561048a57600080fd5b506104a560048036038101906104a0919061388d565b61129d565b6040516104b29190613f35565b60405180910390f35b3480156104c757600080fd5b506104d06112bb565b6040516104dd9190613f35565b60405180910390f35b3480156104f257600080fd5b5061050d6004803603810190610508919061388d565b6112c5565b60405161051a9190613c31565b60405180910390f35b34801561052f57600080fd5b5061054a6004803603810190610545919061388d565b6112db565b005b34801561055857600080fd5b50610573600480360381019061056e9190613626565b6116b1565b6040516105809190613f35565b60405180910390f35b34801561059557600080fd5b5061059e611781565b005b3480156105ac57600080fd5b506105b5611809565b6040516105c29190613f35565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed919061388d565b61180f565b005b34801561060057600080fd5b506106096118e9565b6040516106169190613c31565b60405180910390f35b34801561062b57600080fd5b50610634611913565b6040516106419190613d13565b60405180910390f35b34801561065657600080fd5b5061065f6119a5565b60405161066c9190613f35565b60405180910390f35b34801561068157600080fd5b5061068a611a2b565b6040516106979190613f35565b60405180910390f35b3480156106ac57600080fd5b506106b5611ae7565b6040516106c29190613f35565b60405180910390f35b6106e560048036038101906106e0919061388d565b611aed565b005b3480156106f357600080fd5b506106fc611d4a565b6040516107099190613cf8565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190613755565b611ddd565b005b34801561074757600080fd5b50610750611f55565b60405161075d9190613f35565b60405180910390f35b34801561077257600080fd5b5061078d6004803603810190610788919061388d565b611f5b565b005b34801561079b57600080fd5b506107b660048036038101906107b191906136da565b612024565b005b3480156107c457600080fd5b506107df60048036038101906107da919061388d565b6120a0565b6040516107ec9190613d13565b60405180910390f35b34801561080157600080fd5b5061080a61213f565b005b34801561081857600080fd5b506108216121e7565b60405161082e9190613f35565b60405180910390f35b34801561084357600080fd5b5061085e6004803603810190610859919061364f565b6121ed565b60405161086b9190613cf8565b60405180910390f35b34801561088057600080fd5b50610889612281565b6040516108969190613cf8565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613626565b612294565b005b60006108d261238c565b73ffffffffffffffffffffffffffffffffffffffff166108f06118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90613e75565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a755750610a7482612394565b5b9050919050565b606060028054610a8b906141b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab7906141b4565b8015610b045780601f10610ad957610100808354040283529160200191610b04565b820191906000526020600020905b815481529060010190602001808311610ae757829003601f168201915b5050505050905090565b6000610b19826123fe565b610b4f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b95826112c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1c61238c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c4e5750610c4c81610c4761238c565b6121ed565b155b15610c85576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c9083838361244c565b505050565b6000610c9f6124fe565b6001546000540303905090565b610cb461238c565b73ffffffffffffffffffffffffffffffffffffffff16610cd26118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90613e75565b60405180910390fd5b80600d8190555050565b610d3a61238c565b73ffffffffffffffffffffffffffffffffffffffff16610d586118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590613e75565b60405180910390fd5b600a54610dcc6032610dbe610c95565b61250790919063ffffffff16565b1115610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613e55565b60405180910390fd5b610e1833603261251d565b565b610e2583838361253b565b505050565b6000601160019054906101000a900460ff16905090565b610e4961238c565b73ffffffffffffffffffffffffffffffffffffffff16610e676118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613e75565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610ef161238c565b73ffffffffffffffffffffffffffffffffffffffff16610f0f6118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90613e75565b60405180910390fd5b60005b82829050811015611043576001600b6000858585818110610fb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610fc79190613626565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061102b90614217565b9190505550808061103b90614217565b915050610f68565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110f15750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6110fa57600080fd5b60006015541161113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613eb5565b60405180910390fd5b60004711611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613d75565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6111e660646111d8601554476129f190919063ffffffff16565b612a0790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611211573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561127a573d6000803e3d6000fd5b50565b61129883838360405180602001604052806000815250612024565b505050565b60006112b4826013546129f190919063ffffffff16565b9050919050565b6000601354905090565b60006112d082612a1d565b600001519050919050565b601160019054906101000a900460ff168061133f5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590613f15565b60405180910390fd5b601160009054906101000a900460ff166113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613ed5565b60405180910390fd5b60008111611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613d95565b60405180910390fd5b600954811115611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613e15565b60405180910390fd5b600a5461147282611464610c95565b61250790919063ffffffff16565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613e55565b60405180910390fd5b60006114ca601354836129f190919063ffffffff16565b90506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611508601354846129f190919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611543929190613c4c565b60206040518083038186803b15801561155b57600080fd5b505afa15801561156f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159391906138b6565b10156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613e35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161161193929190613c75565b602060405180830381600087803b15801561162b57600080fd5b505af115801561163f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116639190613812565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613dd5565b60405180910390fd5b6116ac338461251d565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611719576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61178961238c565b73ffffffffffffffffffffffffffffffffffffffff166117a76118e9565b73ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490613e75565b60405180910390fd5b6118076000612cac565b565b60095481565b61181761238c565b73ffffffffffffffffffffffffffffffffffffffff166118356118e9565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613e75565b60405180910390fd5b6000601554101580156118a057506065601554105b6118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613e95565b60405180910390fd5b8060158190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611922906141b4565b80601f016020809104026020016040519081016040528092919081815260200182805461194e906141b4565b801561199b5780601f106119705761010080835404028352916020019161199b565b820191906000526020600020905b81548152906001019060200180831161197e57829003601f168201915b5050505050905090565b60006119af61238c565b73ffffffffffffffffffffffffffffffffffffffff166119cd6118e9565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613e75565b60405180910390fd5b600c54905090565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ad65750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611adf57600080fd5b601554905090565b60125481565b601160019054906101000a900460ff1680611b515750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613f15565b60405180910390fd5b6000601160019054906101000a900460ff16611bfb5760039050600d54611bb6336116b1565b10611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613d35565b60405180910390fd5b611c01565b600a5490505b60008211611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613d95565b60405180910390fd5b80821115611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613db5565b60405180910390fd5b600a54611ca483611c96610c95565b61250790919063ffffffff16565b1115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613e55565b60405180910390fd5b34611cfb836012546129f190919063ffffffff16565b1115611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390613df5565b60405180910390fd5b611d46338361251d565b5050565b6000611d5461238c565b73ffffffffffffffffffffffffffffffffffffffff16611d726118e9565b73ffffffffffffffffffffffffffffffffffffffff1614611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613e75565b60405180910390fd5b601160009054906101000a900460ff16905090565b611de561238c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611e5761238c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0461238c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f499190613cf8565b60405180910390a35050565b60135481565b611f6361238c565b73ffffffffffffffffffffffffffffffffffffffff16611f816118e9565b73ffffffffffffffffffffffffffffffffffffffff1614611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613e75565b60405180910390fd5b6000811161201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613ef5565b60405180910390fd5b8060138190555050565b61202f84848461253b565b61204e8373ffffffffffffffffffffffffffffffffffffffff16612d72565b8015612063575061206184848484612d85565b155b1561209a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606120ab826123fe565b6120e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120eb612ee5565b905060008151141561210c5760405180602001604052806000815250612137565b8061211684612f05565b604051602001612127929190613c02565b6040516020818303038152906040525b915050919050565b61214761238c565b73ffffffffffffffffffffffffffffffffffffffff166121656118e9565b73ffffffffffffffffffffffffffffffffffffffff16146121bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b290613e75565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160019054906101000a900460ff1681565b61229c61238c565b73ffffffffffffffffffffffffffffffffffffffff166122ba6118e9565b73ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230790613e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237790613d55565b60405180910390fd5b61238981612cac565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816124096124fe565b11158015612418575060005482105b8015612445575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600081836125159190613fe9565b905092915050565b6125378282604051806020016040528060008152506130b2565b5050565b600061254682612a1d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125d261238c565b73ffffffffffffffffffffffffffffffffffffffff1614806126015750612600856125fb61238c565b6121ed565b5b80612646575061260f61238c565b73ffffffffffffffffffffffffffffffffffffffff1661262e84610b0e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061267f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126e6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f385858560016130c4565b6126ff6000848761244c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561297f57600054821461297e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ea85858560016130ca565b5050505050565b600081836129ff9190614070565b905092915050565b60008183612a15919061403f565b905092915050565b612a2561349e565b600082905080612a336124fe565b11158015612a42575060005481105b15612c75576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c7357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b57578092505050612ca7565b5b600115612c7257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6d578092505050612ca7565b612b58565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dab61238c565b8786866040518563ffffffff1660e01b8152600401612dcd9493929190613cac565b602060405180830381600087803b158015612de757600080fd5b505af1925050508015612e1857506040513d601f19601f82011682018060405250810190612e159190613864565b60015b612e92573d8060008114612e48576040519150601f19603f3d011682016040523d82523d6000602084013e612e4d565b606091505b50600081511415612e8a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180606001604052806036815260200161473260369139905090565b60606000821415612f4d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ad565b600082905060005b60008214612f7f578080612f6890614217565b915050600a82612f78919061403f565b9150612f55565b60008167ffffffffffffffff811115612fc1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ff35781602001600182028036833780820191505090505b5090505b600085146130a65760018261300c91906140ca565b9150600a8561301b9190614260565b60306130279190613fe9565b60f81b818381518110613063577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561309f919061403f565b9450612ff7565b8093505050505b919050565b6130bf83838360016130d0565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561313d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613178576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61318560008683876130c4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561334f575061334e8773ffffffffffffffffffffffffffffffffffffffff16612d72565b5b15613415575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133c46000888480600101955088612d85565b6133fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561335557826000541461341057600080fd5b613481565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613416575b81600081905550505061349760008683876130ca565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b60006134f46134ef84613f75565b613f50565b90508281526020810184848401111561350c57600080fd5b613517848285614172565b509392505050565b60008135905061352e816146d5565b92915050565b60008083601f84011261354657600080fd5b8235905067ffffffffffffffff81111561355f57600080fd5b60208301915083602082028301111561357757600080fd5b9250929050565b60008135905061358d816146ec565b92915050565b6000815190506135a2816146ec565b92915050565b6000813590506135b781614703565b92915050565b6000815190506135cc81614703565b92915050565b600082601f8301126135e357600080fd5b81356135f38482602086016134e1565b91505092915050565b60008135905061360b8161471a565b92915050565b6000815190506136208161471a565b92915050565b60006020828403121561363857600080fd5b60006136468482850161351f565b91505092915050565b6000806040838503121561366257600080fd5b60006136708582860161351f565b92505060206136818582860161351f565b9150509250929050565b6000806000606084860312156136a057600080fd5b60006136ae8682870161351f565b93505060206136bf8682870161351f565b92505060406136d0868287016135fc565b9150509250925092565b600080600080608085870312156136f057600080fd5b60006136fe8782880161351f565b945050602061370f8782880161351f565b9350506040613720878288016135fc565b925050606085013567ffffffffffffffff81111561373d57600080fd5b613749878288016135d2565b91505092959194509250565b6000806040838503121561376857600080fd5b60006137768582860161351f565b92505060206137878582860161357e565b9150509250929050565b600080604083850312156137a457600080fd5b60006137b28582860161351f565b92505060206137c3858286016135fc565b9150509250929050565b600080602083850312156137e057600080fd5b600083013567ffffffffffffffff8111156137fa57600080fd5b61380685828601613534565b92509250509250929050565b60006020828403121561382457600080fd5b600061383284828501613593565b91505092915050565b60006020828403121561384d57600080fd5b600061385b848285016135a8565b91505092915050565b60006020828403121561387657600080fd5b6000613884848285016135bd565b91505092915050565b60006020828403121561389f57600080fd5b60006138ad848285016135fc565b91505092915050565b6000602082840312156138c857600080fd5b60006138d684828501613611565b91505092915050565b6138e8816140fe565b82525050565b6138f781614110565b82525050565b600061390882613fa6565b6139128185613fbc565b9350613922818560208601614181565b61392b8161434d565b840191505092915050565b600061394182613fb1565b61394b8185613fcd565b935061395b818560208601614181565b6139648161434d565b840191505092915050565b600061397a82613fb1565b6139848185613fde565b9350613994818560208601614181565b80840191505092915050565b60006139ad602383613fcd565b91506139b88261435e565b604082019050919050565b60006139d0602683613fcd565b91506139db826143ad565b604082019050919050565b60006139f3601c83613fcd565b91506139fe826143fc565b602082019050919050565b6000613a16601a83613fcd565b9150613a2182614425565b602082019050919050565b6000613a39602083613fcd565b9150613a448261444e565b602082019050919050565b6000613a5c600f83613fcd565b9150613a6782614477565b602082019050919050565b6000613a7f601f83613fcd565b9150613a8a826144a0565b602082019050919050565b6000613aa2602183613fcd565b9150613aad826144c9565b604082019050919050565b6000613ac5601583613fcd565b9150613ad082614518565b602082019050919050565b6000613ae8602a83613fcd565b9150613af382614541565b604082019050919050565b6000613b0b600583613fde565b9150613b1682614590565b600582019050919050565b6000613b2e602083613fcd565b9150613b39826145b9565b602082019050919050565b6000613b51601c83613fcd565b9150613b5c826145e2565b602082019050919050565b6000613b74601083613fcd565b9150613b7f8261460b565b602082019050919050565b6000613b97602383613fcd565b9150613ba282614634565b604082019050919050565b6000613bba601b83613fcd565b9150613bc582614683565b602082019050919050565b6000613bdd601c83613fcd565b9150613be8826146ac565b602082019050919050565b613bfc81614168565b82525050565b6000613c0e828561396f565b9150613c1a828461396f565b9150613c2582613afe565b91508190509392505050565b6000602082019050613c4660008301846138df565b92915050565b6000604082019050613c6160008301856138df565b613c6e60208301846138df565b9392505050565b6000606082019050613c8a60008301866138df565b613c9760208301856138df565b613ca46040830184613bf3565b949350505050565b6000608082019050613cc160008301876138df565b613cce60208301866138df565b613cdb6040830185613bf3565b8181036060830152613ced81846138fd565b905095945050505050565b6000602082019050613d0d60008301846138ee565b92915050565b60006020820190508181036000830152613d2d8184613936565b905092915050565b60006020820190508181036000830152613d4e816139a0565b9050919050565b60006020820190508181036000830152613d6e816139c3565b9050919050565b60006020820190508181036000830152613d8e816139e6565b9050919050565b60006020820190508181036000830152613dae81613a09565b9050919050565b60006020820190508181036000830152613dce81613a2c565b9050919050565b60006020820190508181036000830152613dee81613a4f565b9050919050565b60006020820190508181036000830152613e0e81613a72565b9050919050565b60006020820190508181036000830152613e2e81613a95565b9050919050565b60006020820190508181036000830152613e4e81613ab8565b9050919050565b60006020820190508181036000830152613e6e81613adb565b9050919050565b60006020820190508181036000830152613e8e81613b21565b9050919050565b60006020820190508181036000830152613eae81613b44565b9050919050565b60006020820190508181036000830152613ece81613b67565b9050919050565b60006020820190508181036000830152613eee81613b8a565b9050919050565b60006020820190508181036000830152613f0e81613bad565b9050919050565b60006020820190508181036000830152613f2e81613bd0565b9050919050565b6000602082019050613f4a6000830184613bf3565b92915050565b6000613f5a613f6b565b9050613f6682826141e6565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9057613f8f61431e565b5b613f998261434d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ff482614168565b9150613fff83614168565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403457614033614291565b5b828201905092915050565b600061404a82614168565b915061405583614168565b925082614065576140646142c0565b5b828204905092915050565b600061407b82614168565b915061408683614168565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140bf576140be614291565b5b828202905092915050565b60006140d582614168565b91506140e083614168565b9250828210156140f3576140f2614291565b5b828203905092915050565b600061410982614148565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561419f578082015181840152602081019050614184565b838111156141ae576000848401525b50505050565b600060028204905060018216806141cc57607f821691505b602082108114156141e0576141df6142ef565b5b50919050565b6141ef8261434d565b810181811067ffffffffffffffff8211171561420e5761420d61431e565b5b80604052505050565b600061422282614168565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561425557614254614291565b5b600182019050919050565b600061426b82614168565b915061427683614168565b925082614286576142856142c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7520657863656564656420796f75722077686974656c697374206d61786960008201527f6d756d0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468697320636f6e747261637420686173206e6f2062616c616e636500000000600082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f596f752063616e6e6f74207468617420616d6f756e74206f6620746f6b656e73600082015250565b7f7472616e73666572204661696c65640000000000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e737566696369656e7420416c6c6f77616e63650000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c7565206d757374206265747765656e203020616e642031303000000000600082015250565b7f5365742061727469737420736861726500000000000000000000000000000000600082015250565b7f596f752063616e6e6f742075736520417065436f696e2061742074686973207460008201527f696d650000000000000000000000000000000000000000000000000000000000602082015250565b7f4d757374207365742050726963652041626f7665203020244150450000000000600082015250565b7f596f752063616e6e6f74206d696e7420617420746869732074696d6500000000600082015250565b6146de816140fe565b81146146e957600080fd5b50565b6146f581614110565b811461470057600080fd5b50565b61470c8161411c565b811461471757600080fd5b50565b61472381614168565b811461472e57600080fd5b5056fe697066733a2f2f516d5544593568515253435a664c643366506d414232445267504e777775635473397a3744343448446f574d545a2fa264697066735822122043a30baaec95252ae5107bf8baa9a17b6efdbc75b82b0b19bdf03c118719dfa364736f6c634300080400330000000000000000000000000000000000000000000000000000000000001c20000000000000000000000000000000000000000000000000000000000000001400000000000000000000000069856c85518a656d801e3b4d93186247b1608640000000000000000000000000475bedae1fc15cd0d0fad57da1689b1b40faacd0

Deployed Bytecode

0x60806040526004361061022f5760003560e01c8063715018a61161012e578063a22cb465116100ab578063d19473171161006f578063d1947317146107f5578063e83157421461080c578063e985e9c514610837578063eb8d244414610874578063f2fde38b1461089f5761022f565b8063a22cb46514610712578063a98534911461073b578063aee5d0ac14610766578063b88d4fde1461078f578063c87b56dd146107b85761022f565b806399db89b5116100f257806399db89b51461064a5780639b4bca6b146106755780639c9df017146106a0578063a0712d68146106cb578063a0c8e62a146106e75761022f565b8063715018a6146105895780637501f741146105a05780637eeab095146105cb5780638da5cb5b146105f457806395d89b411461061f5761022f565b806325bdb2a8116101bc5780634774f98c116101805780634774f98c1461047e57806350e31693146104bb5780636352211e146104e65780636cfec76a1461052357806370a082311461054c5761022f565b806325bdb2a8146103d357806334918dfd146103fe57806335377214146104155780633ccfd60b1461043e57806342842e0e146104555761022f565b8063095ea7b311610203578063095ea7b31461031657806318160ddd1461033f5780631dfa86391461036a57806321c8d6761461039357806323b872dd146103aa5761022f565b8062764f9e1461023457806301ffc9a71461027157806306fdde03146102ae578063081812fc146102d9575b600080fd5b34801561024057600080fd5b5061025b60048036038101906102569190613626565b6108c8565b6040516102689190613cf8565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061383b565b61099a565b6040516102a59190613cf8565b60405180910390f35b3480156102ba57600080fd5b506102c3610a7c565b6040516102d09190613d13565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061388d565b610b0e565b60405161030d9190613c31565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190613791565b610b8a565b005b34801561034b57600080fd5b50610354610c95565b6040516103619190613f35565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061388d565b610cac565b005b34801561039f57600080fd5b506103a8610d32565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061368b565b610e1a565b005b3480156103df57600080fd5b506103e8610e2a565b6040516103f59190613cf8565b60405180910390f35b34801561040a57600080fd5b50610413610e41565b005b34801561042157600080fd5b5061043c600480360381019061043791906137cd565b610ee9565b005b34801561044a57600080fd5b50610453611048565b005b34801561046157600080fd5b5061047c6004803603810190610477919061368b565b61127d565b005b34801561048a57600080fd5b506104a560048036038101906104a0919061388d565b61129d565b6040516104b29190613f35565b60405180910390f35b3480156104c757600080fd5b506104d06112bb565b6040516104dd9190613f35565b60405180910390f35b3480156104f257600080fd5b5061050d6004803603810190610508919061388d565b6112c5565b60405161051a9190613c31565b60405180910390f35b34801561052f57600080fd5b5061054a6004803603810190610545919061388d565b6112db565b005b34801561055857600080fd5b50610573600480360381019061056e9190613626565b6116b1565b6040516105809190613f35565b60405180910390f35b34801561059557600080fd5b5061059e611781565b005b3480156105ac57600080fd5b506105b5611809565b6040516105c29190613f35565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed919061388d565b61180f565b005b34801561060057600080fd5b506106096118e9565b6040516106169190613c31565b60405180910390f35b34801561062b57600080fd5b50610634611913565b6040516106419190613d13565b60405180910390f35b34801561065657600080fd5b5061065f6119a5565b60405161066c9190613f35565b60405180910390f35b34801561068157600080fd5b5061068a611a2b565b6040516106979190613f35565b60405180910390f35b3480156106ac57600080fd5b506106b5611ae7565b6040516106c29190613f35565b60405180910390f35b6106e560048036038101906106e0919061388d565b611aed565b005b3480156106f357600080fd5b506106fc611d4a565b6040516107099190613cf8565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190613755565b611ddd565b005b34801561074757600080fd5b50610750611f55565b60405161075d9190613f35565b60405180910390f35b34801561077257600080fd5b5061078d6004803603810190610788919061388d565b611f5b565b005b34801561079b57600080fd5b506107b660048036038101906107b191906136da565b612024565b005b3480156107c457600080fd5b506107df60048036038101906107da919061388d565b6120a0565b6040516107ec9190613d13565b60405180910390f35b34801561080157600080fd5b5061080a61213f565b005b34801561081857600080fd5b506108216121e7565b60405161082e9190613f35565b60405180910390f35b34801561084357600080fd5b5061085e6004803603810190610859919061364f565b6121ed565b60405161086b9190613cf8565b60405180910390f35b34801561088057600080fd5b50610889612281565b6040516108969190613cf8565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613626565b612294565b005b60006108d261238c565b73ffffffffffffffffffffffffffffffffffffffff166108f06118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90613e75565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a755750610a7482612394565b5b9050919050565b606060028054610a8b906141b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab7906141b4565b8015610b045780601f10610ad957610100808354040283529160200191610b04565b820191906000526020600020905b815481529060010190602001808311610ae757829003601f168201915b5050505050905090565b6000610b19826123fe565b610b4f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b95826112c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1c61238c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c4e5750610c4c81610c4761238c565b6121ed565b155b15610c85576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c9083838361244c565b505050565b6000610c9f6124fe565b6001546000540303905090565b610cb461238c565b73ffffffffffffffffffffffffffffffffffffffff16610cd26118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90613e75565b60405180910390fd5b80600d8190555050565b610d3a61238c565b73ffffffffffffffffffffffffffffffffffffffff16610d586118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590613e75565b60405180910390fd5b600a54610dcc6032610dbe610c95565b61250790919063ffffffff16565b1115610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613e55565b60405180910390fd5b610e1833603261251d565b565b610e2583838361253b565b505050565b6000601160019054906101000a900460ff16905090565b610e4961238c565b73ffffffffffffffffffffffffffffffffffffffff16610e676118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613e75565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610ef161238c565b73ffffffffffffffffffffffffffffffffffffffff16610f0f6118e9565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90613e75565b60405180910390fd5b60005b82829050811015611043576001600b6000858585818110610fb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610fc79190613626565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061102b90614217565b9190505550808061103b90614217565b915050610f68565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110f15750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6110fa57600080fd5b60006015541161113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613eb5565b60405180910390fd5b60004711611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613d75565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6111e660646111d8601554476129f190919063ffffffff16565b612a0790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611211573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561127a573d6000803e3d6000fd5b50565b61129883838360405180602001604052806000815250612024565b505050565b60006112b4826013546129f190919063ffffffff16565b9050919050565b6000601354905090565b60006112d082612a1d565b600001519050919050565b601160019054906101000a900460ff168061133f5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590613f15565b60405180910390fd5b601160009054906101000a900460ff166113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613ed5565b60405180910390fd5b60008111611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613d95565b60405180910390fd5b600954811115611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613e15565b60405180910390fd5b600a5461147282611464610c95565b61250790919063ffffffff16565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613e55565b60405180910390fd5b60006114ca601354836129f190919063ffffffff16565b90506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611508601354846129f190919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611543929190613c4c565b60206040518083038186803b15801561155b57600080fd5b505afa15801561156f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159391906138b6565b10156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613e35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161161193929190613c75565b602060405180830381600087803b15801561162b57600080fd5b505af115801561163f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116639190613812565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613dd5565b60405180910390fd5b6116ac338461251d565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611719576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61178961238c565b73ffffffffffffffffffffffffffffffffffffffff166117a76118e9565b73ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490613e75565b60405180910390fd5b6118076000612cac565b565b60095481565b61181761238c565b73ffffffffffffffffffffffffffffffffffffffff166118356118e9565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613e75565b60405180910390fd5b6000601554101580156118a057506065601554105b6118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613e95565b60405180910390fd5b8060158190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611922906141b4565b80601f016020809104026020016040519081016040528092919081815260200182805461194e906141b4565b801561199b5780601f106119705761010080835404028352916020019161199b565b820191906000526020600020905b81548152906001019060200180831161197e57829003601f168201915b5050505050905090565b60006119af61238c565b73ffffffffffffffffffffffffffffffffffffffff166119cd6118e9565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613e75565b60405180910390fd5b600c54905090565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ad65750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611adf57600080fd5b601554905090565b60125481565b601160019054906101000a900460ff1680611b515750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613f15565b60405180910390fd5b6000601160019054906101000a900460ff16611bfb5760039050600d54611bb6336116b1565b10611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613d35565b60405180910390fd5b611c01565b600a5490505b60008211611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613d95565b60405180910390fd5b80821115611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613db5565b60405180910390fd5b600a54611ca483611c96610c95565b61250790919063ffffffff16565b1115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613e55565b60405180910390fd5b34611cfb836012546129f190919063ffffffff16565b1115611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390613df5565b60405180910390fd5b611d46338361251d565b5050565b6000611d5461238c565b73ffffffffffffffffffffffffffffffffffffffff16611d726118e9565b73ffffffffffffffffffffffffffffffffffffffff1614611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613e75565b60405180910390fd5b601160009054906101000a900460ff16905090565b611de561238c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611e5761238c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0461238c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f499190613cf8565b60405180910390a35050565b60135481565b611f6361238c565b73ffffffffffffffffffffffffffffffffffffffff16611f816118e9565b73ffffffffffffffffffffffffffffffffffffffff1614611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613e75565b60405180910390fd5b6000811161201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613ef5565b60405180910390fd5b8060138190555050565b61202f84848461253b565b61204e8373ffffffffffffffffffffffffffffffffffffffff16612d72565b8015612063575061206184848484612d85565b155b1561209a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606120ab826123fe565b6120e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120eb612ee5565b905060008151141561210c5760405180602001604052806000815250612137565b8061211684612f05565b604051602001612127929190613c02565b6040516020818303038152906040525b915050919050565b61214761238c565b73ffffffffffffffffffffffffffffffffffffffff166121656118e9565b73ffffffffffffffffffffffffffffffffffffffff16146121bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b290613e75565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160019054906101000a900460ff1681565b61229c61238c565b73ffffffffffffffffffffffffffffffffffffffff166122ba6118e9565b73ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230790613e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237790613d55565b60405180910390fd5b61238981612cac565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816124096124fe565b11158015612418575060005482105b8015612445575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600081836125159190613fe9565b905092915050565b6125378282604051806020016040528060008152506130b2565b5050565b600061254682612a1d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125d261238c565b73ffffffffffffffffffffffffffffffffffffffff1614806126015750612600856125fb61238c565b6121ed565b5b80612646575061260f61238c565b73ffffffffffffffffffffffffffffffffffffffff1661262e84610b0e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061267f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126e6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f385858560016130c4565b6126ff6000848761244c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561297f57600054821461297e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ea85858560016130ca565b5050505050565b600081836129ff9190614070565b905092915050565b60008183612a15919061403f565b905092915050565b612a2561349e565b600082905080612a336124fe565b11158015612a42575060005481105b15612c75576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c7357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b57578092505050612ca7565b5b600115612c7257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6d578092505050612ca7565b612b58565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dab61238c565b8786866040518563ffffffff1660e01b8152600401612dcd9493929190613cac565b602060405180830381600087803b158015612de757600080fd5b505af1925050508015612e1857506040513d601f19601f82011682018060405250810190612e159190613864565b60015b612e92573d8060008114612e48576040519150601f19603f3d011682016040523d82523d6000602084013e612e4d565b606091505b50600081511415612e8a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180606001604052806036815260200161473260369139905090565b60606000821415612f4d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ad565b600082905060005b60008214612f7f578080612f6890614217565b915050600a82612f78919061403f565b9150612f55565b60008167ffffffffffffffff811115612fc1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ff35781602001600182028036833780820191505090505b5090505b600085146130a65760018261300c91906140ca565b9150600a8561301b9190614260565b60306130279190613fe9565b60f81b818381518110613063577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561309f919061403f565b9450612ff7565b8093505050505b919050565b6130bf83838360016130d0565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561313d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613178576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61318560008683876130c4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561334f575061334e8773ffffffffffffffffffffffffffffffffffffffff16612d72565b5b15613415575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133c46000888480600101955088612d85565b6133fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561335557826000541461341057600080fd5b613481565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613416575b81600081905550505061349760008683876130ca565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b60006134f46134ef84613f75565b613f50565b90508281526020810184848401111561350c57600080fd5b613517848285614172565b509392505050565b60008135905061352e816146d5565b92915050565b60008083601f84011261354657600080fd5b8235905067ffffffffffffffff81111561355f57600080fd5b60208301915083602082028301111561357757600080fd5b9250929050565b60008135905061358d816146ec565b92915050565b6000815190506135a2816146ec565b92915050565b6000813590506135b781614703565b92915050565b6000815190506135cc81614703565b92915050565b600082601f8301126135e357600080fd5b81356135f38482602086016134e1565b91505092915050565b60008135905061360b8161471a565b92915050565b6000815190506136208161471a565b92915050565b60006020828403121561363857600080fd5b60006136468482850161351f565b91505092915050565b6000806040838503121561366257600080fd5b60006136708582860161351f565b92505060206136818582860161351f565b9150509250929050565b6000806000606084860312156136a057600080fd5b60006136ae8682870161351f565b93505060206136bf8682870161351f565b92505060406136d0868287016135fc565b9150509250925092565b600080600080608085870312156136f057600080fd5b60006136fe8782880161351f565b945050602061370f8782880161351f565b9350506040613720878288016135fc565b925050606085013567ffffffffffffffff81111561373d57600080fd5b613749878288016135d2565b91505092959194509250565b6000806040838503121561376857600080fd5b60006137768582860161351f565b92505060206137878582860161357e565b9150509250929050565b600080604083850312156137a457600080fd5b60006137b28582860161351f565b92505060206137c3858286016135fc565b9150509250929050565b600080602083850312156137e057600080fd5b600083013567ffffffffffffffff8111156137fa57600080fd5b61380685828601613534565b92509250509250929050565b60006020828403121561382457600080fd5b600061383284828501613593565b91505092915050565b60006020828403121561384d57600080fd5b600061385b848285016135a8565b91505092915050565b60006020828403121561387657600080fd5b6000613884848285016135bd565b91505092915050565b60006020828403121561389f57600080fd5b60006138ad848285016135fc565b91505092915050565b6000602082840312156138c857600080fd5b60006138d684828501613611565b91505092915050565b6138e8816140fe565b82525050565b6138f781614110565b82525050565b600061390882613fa6565b6139128185613fbc565b9350613922818560208601614181565b61392b8161434d565b840191505092915050565b600061394182613fb1565b61394b8185613fcd565b935061395b818560208601614181565b6139648161434d565b840191505092915050565b600061397a82613fb1565b6139848185613fde565b9350613994818560208601614181565b80840191505092915050565b60006139ad602383613fcd565b91506139b88261435e565b604082019050919050565b60006139d0602683613fcd565b91506139db826143ad565b604082019050919050565b60006139f3601c83613fcd565b91506139fe826143fc565b602082019050919050565b6000613a16601a83613fcd565b9150613a2182614425565b602082019050919050565b6000613a39602083613fcd565b9150613a448261444e565b602082019050919050565b6000613a5c600f83613fcd565b9150613a6782614477565b602082019050919050565b6000613a7f601f83613fcd565b9150613a8a826144a0565b602082019050919050565b6000613aa2602183613fcd565b9150613aad826144c9565b604082019050919050565b6000613ac5601583613fcd565b9150613ad082614518565b602082019050919050565b6000613ae8602a83613fcd565b9150613af382614541565b604082019050919050565b6000613b0b600583613fde565b9150613b1682614590565b600582019050919050565b6000613b2e602083613fcd565b9150613b39826145b9565b602082019050919050565b6000613b51601c83613fcd565b9150613b5c826145e2565b602082019050919050565b6000613b74601083613fcd565b9150613b7f8261460b565b602082019050919050565b6000613b97602383613fcd565b9150613ba282614634565b604082019050919050565b6000613bba601b83613fcd565b9150613bc582614683565b602082019050919050565b6000613bdd601c83613fcd565b9150613be8826146ac565b602082019050919050565b613bfc81614168565b82525050565b6000613c0e828561396f565b9150613c1a828461396f565b9150613c2582613afe565b91508190509392505050565b6000602082019050613c4660008301846138df565b92915050565b6000604082019050613c6160008301856138df565b613c6e60208301846138df565b9392505050565b6000606082019050613c8a60008301866138df565b613c9760208301856138df565b613ca46040830184613bf3565b949350505050565b6000608082019050613cc160008301876138df565b613cce60208301866138df565b613cdb6040830185613bf3565b8181036060830152613ced81846138fd565b905095945050505050565b6000602082019050613d0d60008301846138ee565b92915050565b60006020820190508181036000830152613d2d8184613936565b905092915050565b60006020820190508181036000830152613d4e816139a0565b9050919050565b60006020820190508181036000830152613d6e816139c3565b9050919050565b60006020820190508181036000830152613d8e816139e6565b9050919050565b60006020820190508181036000830152613dae81613a09565b9050919050565b60006020820190508181036000830152613dce81613a2c565b9050919050565b60006020820190508181036000830152613dee81613a4f565b9050919050565b60006020820190508181036000830152613e0e81613a72565b9050919050565b60006020820190508181036000830152613e2e81613a95565b9050919050565b60006020820190508181036000830152613e4e81613ab8565b9050919050565b60006020820190508181036000830152613e6e81613adb565b9050919050565b60006020820190508181036000830152613e8e81613b21565b9050919050565b60006020820190508181036000830152613eae81613b44565b9050919050565b60006020820190508181036000830152613ece81613b67565b9050919050565b60006020820190508181036000830152613eee81613b8a565b9050919050565b60006020820190508181036000830152613f0e81613bad565b9050919050565b60006020820190508181036000830152613f2e81613bd0565b9050919050565b6000602082019050613f4a6000830184613bf3565b92915050565b6000613f5a613f6b565b9050613f6682826141e6565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9057613f8f61431e565b5b613f998261434d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ff482614168565b9150613fff83614168565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403457614033614291565b5b828201905092915050565b600061404a82614168565b915061405583614168565b925082614065576140646142c0565b5b828204905092915050565b600061407b82614168565b915061408683614168565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140bf576140be614291565b5b828202905092915050565b60006140d582614168565b91506140e083614168565b9250828210156140f3576140f2614291565b5b828203905092915050565b600061410982614148565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561419f578082015181840152602081019050614184565b838111156141ae576000848401525b50505050565b600060028204905060018216806141cc57607f821691505b602082108114156141e0576141df6142ef565b5b50919050565b6141ef8261434d565b810181811067ffffffffffffffff8211171561420e5761420d61431e565b5b80604052505050565b600061422282614168565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561425557614254614291565b5b600182019050919050565b600061426b82614168565b915061427683614168565b925082614286576142856142c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7520657863656564656420796f75722077686974656c697374206d61786960008201527f6d756d0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468697320636f6e747261637420686173206e6f2062616c616e636500000000600082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f596f752063616e6e6f74207468617420616d6f756e74206f6620746f6b656e73600082015250565b7f7472616e73666572204661696c65640000000000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e737566696369656e7420416c6c6f77616e63650000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c7565206d757374206265747765656e203020616e642031303000000000600082015250565b7f5365742061727469737420736861726500000000000000000000000000000000600082015250565b7f596f752063616e6e6f742075736520417065436f696e2061742074686973207460008201527f696d650000000000000000000000000000000000000000000000000000000000602082015250565b7f4d757374207365742050726963652041626f7665203020244150450000000000600082015250565b7f596f752063616e6e6f74206d696e7420617420746869732074696d6500000000600082015250565b6146de816140fe565b81146146e957600080fd5b50565b6146f581614110565b811461470057600080fd5b50565b61470c8161411c565b811461471757600080fd5b50565b61472381614168565b811461472e57600080fd5b5056fe697066733a2f2f516d5544593568515253435a664c643366506d414232445267504e777775635473397a3744343448446f574d545a2fa264697066735822122043a30baaec95252ae5107bf8baa9a17b6efdbc75b82b0b19bdf03c118719dfa364736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000001c20000000000000000000000000000000000000000000000000000000000000001400000000000000000000000069856c85518a656d801e3b4d93186247b1608640000000000000000000000000475bedae1fc15cd0d0fad57da1689b1b40faacd0

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 7200
Arg [1] : maxTotalMints (uint256): 20
Arg [2] : artist (address): 0x69856C85518A656D801E3B4D93186247b1608640
Arg [3] : founders (address): 0x475bedAE1Fc15CD0D0faD57Da1689B1B40faAcD0

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001c20
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 00000000000000000000000069856c85518a656d801e3b4d93186247b1608640
Arg [3] : 000000000000000000000000475bedae1fc15cd0d0fad57da1689b1b40faacd0


Deployed Bytecode Sourcemap

177:4880:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4828:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4309:300:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7337:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8855:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8432:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3580:297;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4954:100:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1921:185;;;;;;;;;;;;;:::i;:::-;;9694:164:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4062:81:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3971:87;;;;;;;;;;;;;:::i;:::-;;4511:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1008:299;;;;;;;;;;;;;:::i;:::-;;9924:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4388:119:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4301:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7152:123:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2896:871:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4668:203:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:13;;;;;;;;;;;;;:::i;:::-;;246:22:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1415:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;966:85:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7499:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4723:101:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1311:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;573:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2110:782;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3867:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9122:282:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;616:32:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4147:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10169:359:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7667:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3771:92:1;;;;;;;;;;;;;:::i;:::-;;272:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9470:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;537:32:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4828:122:1;4908:4;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4926:9:1::1;:19;4936:8;4926:19;;;;;;;;;;;;;;;;;;;;;;;;;4919:26;;4828:122:::0;;;:::o;4309:300:5:-;4411:4;4461:25;4446:40;;;:11;:40;;;;:104;;;;4517:33;4502:48;;;:11;:48;;;;4446:104;:156;;;;4566:36;4590:11;4566:23;:36::i;:::-;4446:156;4427:175;;4309:300;;;:::o;7337:98::-;7391:13;7423:5;7416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7337:98;:::o;8855:200::-;8923:7;8947:16;8955:7;8947;:16::i;:::-;8942:64;;8972:34;;;;;;;;;;;;;;8942:64;9024:15;:24;9040:7;9024:24;;;;;;;;;;;;;;;;;;;;;9017:31;;8855:200;;;:::o;8432:362::-;8504:13;8520:24;8536:7;8520:15;:24::i;:::-;8504:40;;8564:5;8558:11;;:2;:11;;;8554:48;;;8578:24;;;;;;;;;;;;;;8554:48;8633:5;8617:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8643:37;8660:5;8667:12;:10;:12::i;:::-;8643:16;:37::i;:::-;8642:38;8617:63;8613:136;;;8703:35;;;;;;;;;;;;;;8613:136;8759:28;8768:2;8772:7;8781:5;8759:8;:28::i;:::-;8432:362;;;:::o;3580:297::-;3624:7;3845:15;:13;:15::i;:::-;3830:12;;3814:13;;:28;:46;3807:53;;3580:297;:::o;4954:100:1:-;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5043:6:1::1;5024:16;:25;;;;4954:100:::0;:::o;1921:185::-;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:9:1::1;;1983:21;2001:2;1983:13;:11;:13::i;:::-;:17;;:21;;;;:::i;:::-;:34;;1975:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2076:25;2086:10;2098:2;2076:9;:25::i;:::-;1921:185::o:0;9694:164:5:-;9823:28;9833:4;9839:2;9843:7;9823:9;:28::i;:::-;9694:164;;;:::o;4062:81:1:-;4107:4;4126:12;;;;;;;;;;;4119:19;;4062:81;:::o;3971:87::-;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4041:12:1::1;;;;;;;;;;;4040:13;4025:12;;:28;;;;;;;;;;;;;;;;;;3971:87::o:0;4511:208::-;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4601:6:1::1;4596:119;4613:10;;:17;;4611:1;:19;4596:119;;;4675:4;4648:9;:24;4658:10;;4669:1;4658:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4648:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;4690:14;;:16;;;;;;;;;:::i;:::-;;;;;;4632:3;;;;;:::i;:::-;;;;4596:119;;;;4511:208:::0;;:::o;1008:299::-;1658:12;;;;;;;;;;;1644:26;;:10;:26;;;:58;;;;1688:14;;;;;;;;;;;1674:28;;:10;:28;;;1644:58;1636:67;;;;;;1078:1:::1;1064:11;;:15;1056:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;1138:1;1114:21;:25;1106:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1179:12;;;;;;;;;;;:21;;:70;1201:47;1244:3;1201:38;1227:11;;1201:21;:25;;:38;;;;:::i;:::-;:42;;:47;;;;:::i;:::-;1179:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1255:14;;;;;;;;;;;:23;;:46;1279:21;1255:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1008:299::o:0;9924:179:5:-;10057:39;10074:4;10080:2;10084:7;10057:39;;;;;;;;;;;;:16;:39::i;:::-;9924:179;;;:::o;4388:119:1:-;4455:7;4476:26;4493:8;4476:12;;:16;;:26;;;;:::i;:::-;4469:33;;4388:119;;;:::o;4301:83::-;4345:7;4367:12;;4360:19;;4301:83;:::o;7152:123:5:-;7216:7;7242:21;7255:7;7242:12;:21::i;:::-;:26;;;7235:33;;7152:123;;;:::o;2896:871:1:-;2957:12;;;;;;;;;;;:37;;;;2973:9;:21;2983:10;2973:21;;;;;;;;;;;;;;;;;;;;;;;;;2957:37;2949:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3041:15;;;;;;;;;;;3033:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3121:1;3110:8;:12;3102:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3179:7;;3167:8;:19;;3159:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;3269:9;;3238:27;3256:8;3238:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:40;;3230:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;3332:17;3352:26;3365:12;;3352:8;:12;;:26;;;;:::i;:::-;3332:46;;3386:19;3415:12;;;;;;;;;;;3386:42;;3497:26;3510:12;;3497:8;:12;;:26;;;;:::i;:::-;3444:12;:22;;;3467:10;3487:4;3444:49;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:79;;3436:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;3562:12;:25;;;3588:10;3608:4;3615:9;3562:63;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3554:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;3726:31;3736:10;3748:8;3726:9;:31::i;:::-;2896:871;;;:::o;4668:203:5:-;4732:7;4772:1;4755:19;;:5;:19;;;4751:60;;;4783:28;;;;;;;;;;;;;;4751:60;4836:12;:19;4849:5;4836:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4828:36;;4821:43;;4668:203;;;:::o;1598:92:13:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;246:22:1:-;;;;:::o;1415:187::-;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1510:1:1::1;1496:11;;:15;;:35;;;;;1528:3;1516:11;;:15;1496:35;1487:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1584:13;1570:11;:27;;;;1415:187:::0;:::o;966:85:13:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;7499:102:5:-;7555:13;7587:7;7580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7499:102;:::o;4723:101:1:-;4784:7;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4805:14:1::1;;4798:21;;4723:101:::0;:::o;1311:100::-;1373:7;1658:12;;;;;;;;;;;1644:26;;:10;:26;;;:58;;;;1688:14;;;;;;;;;;;1674:28;;:10;:28;;;1644:58;1636:67;;;;;;1395:11:::1;;1388:18;;1311:100:::0;:::o;573:39::-;;;;:::o;2110:782::-;2172:12;;;;;;;;;;;:37;;;;2188:9;:21;2198:10;2188:21;;;;;;;;;;;;;;;;;;;;;;;;;2172:37;2164:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2250:14;2275:12;;;;;;;;;;;2270:185;;2309:1;2297:13;;2350:16;;2326:21;2336:10;2326:9;:21::i;:::-;:40;2318:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;2270:185;;;2439:9;;2427:21;;2270:185;2480:1;2469:8;:12;2461:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2538:9;2526:8;:21;;2518:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2629:9;;2598:27;2616:8;2598:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:40;;2590:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2729:9;2699:26;2716:8;2699:12;;:16;;:26;;;;:::i;:::-;:39;;2691:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2856:31;2866:10;2878:8;2856:9;:31::i;:::-;2110:782;;:::o;3867:100::-;3927:4;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3947:15:1::1;;;;;;;;;;;3940:22;;3867:100:::0;:::o;9122:282:5:-;9232:12;:10;:12::i;:::-;9220:24;;:8;:24;;;9216:54;;;9253:17;;;;;;;;;;;;;;9216:54;9326:8;9281:18;:32;9300:12;:10;:12::i;:::-;9281:32;;;;;;;;;;;;;;;:42;9314:8;9281:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9378:8;9349:48;;9364:12;:10;:12::i;:::-;9349:48;;;9388:8;9349:48;;;;;;:::i;:::-;;;;;;;;9122:282;;:::o;616:32:1:-;;;;:::o;4147:150::-;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4230:1:1::1;4219:8;:12;4211:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;4284:8;4269:12;:23;;;;4147:150:::0;:::o;10169:359:5:-;10330:28;10340:4;10346:2;10350:7;10330:9;:28::i;:::-;10372:15;:2;:13;;;:15::i;:::-;:76;;;;;10392:56;10423:4;10429:2;10433:7;10442:5;10392:30;:56::i;:::-;10391:57;10372:76;10368:154;;;10471:40;;;;;;;;;;;;;;10368:154;10169:359;;;;:::o;7667:321::-;7740:13;7770:16;7778:7;7770;:16::i;:::-;7765:59;;7795:29;;;;;;;;;;;;;;7765:59;7835:21;7859:10;:8;:10::i;:::-;7835:34;;7911:1;7892:7;7886:21;:26;;:95;;;;;;;;;;;;;;;;;7939:7;7948:18;:7;:16;:18::i;:::-;7922:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7886:95;7879:102;;;7667:321;;;:::o;3771:92:1:-;1189:12:13;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3843:15:1::1;;;;;;;;;;;3842:16;3824:15;;:34;;;;;;;;;;;;;;;;;;3771:92::o:0;272:24::-;;;;:::o;9470:162:5:-;9567:4;9590:18;:25;9609:5;9590:25;;;;;;;;;;;;;;;:35;9616:8;9590:35;;;;;;;;;;;;;;;;;;;;;;;;;9583:42;;9470:162;;;;:::o;537:32:1:-;;;;;;;;;;;;;:::o;1839:189:13:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;586:96:2:-;639:7;665:10;658:17;;586:96;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;10774:184:5:-;10831:4;10873:7;10854:15;:13;:15::i;:::-;:26;;:53;;;;;10894:13;;10884:7;:23;10854:53;:97;;;;;10924:11;:20;10936:7;10924:20;;;;;;;;;;;:27;;;;;;;;;;;;10923:28;10854:97;10847:104;;10774:184;;;:::o;18726:189::-;18863:2;18836:15;:24;18852:7;18836:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18900:7;18896:2;18880:28;;18889:5;18880:28;;;;;;;;;;;;18726:189;;;:::o;1783:92:1:-;1848:7;1869:1;1862:8;;1783:92;:::o;2672:96:15:-;2730:7;2760:1;2756;:5;;;;:::i;:::-;2749:12;;2672:96;;;;:::o;10964:102:5:-;11032:27;11042:2;11046:8;11032:27;;;;;;;;;;;;:9;:27::i;:::-;10964:102;;:::o;13796:2082::-;13906:35;13944:21;13957:7;13944:12;:21::i;:::-;13906:59;;14002:4;13980:26;;:13;:18;;;:26;;;13976:67;;14015:28;;;;;;;;;;;;;;13976:67;14054:22;14096:4;14080:20;;:12;:10;:12::i;:::-;:20;;;:72;;;;14116:36;14133:4;14139:12;:10;:12::i;:::-;14116:16;:36::i;:::-;14080:72;:124;;;;14192:12;:10;:12::i;:::-;14168:36;;:20;14180:7;14168:11;:20::i;:::-;:36;;;14080:124;14054:151;;14221:17;14216:66;;14247:35;;;;;;;;;;;;;;14216:66;14310:1;14296:16;;:2;:16;;;14292:52;;;14321:23;;;;;;;;;;;;;;14292:52;14355:43;14377:4;14383:2;14387:7;14396:1;14355:21;:43::i;:::-;14460:35;14477:1;14481:7;14490:4;14460:8;:35::i;:::-;14815:1;14785:12;:18;14798:4;14785:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14858:1;14830:12;:16;14843:2;14830:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14874:31;14908:11;:20;14920:7;14908:20;;;;;;;;;;;14874:54;;14958:2;14942:8;:13;;;:18;;;;;;;;;;;;;;;;;;15007:15;14974:8;:23;;;:49;;;;;;;;;;;;;;;;;;15271:19;15303:1;15293:7;:11;15271:33;;15318:31;15352:11;:24;15364:11;15352:24;;;;;;;;;;;15318:58;;15419:1;15394:27;;:8;:13;;;;;;;;;;;;:27;;;15390:377;;;15601:13;;15586:11;:28;15582:171;;15654:4;15638:8;:13;;;:20;;;;;;;;;;;;;;;;;;15706:13;:28;;;15680:8;:23;;;:54;;;;;;;;;;;;;;;;;;15582:171;15390:377;13796:2082;;;15811:7;15807:2;15792:27;;15801:4;15792:27;;;;;;;;;;;;15829:42;15850:4;15856:2;15860:7;15869:1;15829:20;:42::i;:::-;13796:2082;;;;;:::o;3382:96:15:-;3440:7;3470:1;3466;:5;;;;:::i;:::-;3459:12;;3382:96;;;;:::o;3767:::-;3825:7;3855:1;3851;:5;;;;:::i;:::-;3844:12;;3767:96;;;;:::o;6011:1084:5:-;6073:21;;:::i;:::-;6106:12;6121:7;6106:22;;6186:4;6167:15;:13;:15::i;:::-;:23;;:47;;;;;6201:13;;6194:4;:20;6167:47;6163:868;;;6234:31;6268:11;:17;6280:4;6268:17;;;;;;;;;;;6234:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6308:9;:16;;;6303:714;;6378:1;6352:28;;:9;:14;;;:28;;;6348:99;;6415:9;6408:16;;;;;;6348:99;6744:255;6751:4;6744:255;;;6783:6;;;;;;;;6827:11;:17;6839:4;6827:17;;;;;;;;;;;6815:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6900:1;6874:28;;:9;:14;;;:28;;;6870:107;;6941:9;6934:16;;;;;;6870:107;6744:255;;;6303:714;6163:868;;7057:31;;;;;;;;;;;;;;6011:1084;;;;:::o;2034:169:13:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2034:169;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;19396:650:5:-;19554:4;19590:2;19574:36;;;19611:12;:10;:12::i;:::-;19625:4;19631:7;19640:5;19574:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19570:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19822:1;19805:6;:13;:18;19801:229;;;19850:40;;;;;;;;;;;;;;19801:229;19990:6;19984:13;19975:6;19971:2;19967:15;19960:38;19570:470;19702:45;;;19692:55;;;:6;:55;;;;19685:62;;;19396:650;;;;;;:::o;8229:146::-;8280:13;8305:63;;;;;;;;;;;;;;;;;;;8229:146;:::o;275:703:16:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;11417:157:5:-;11535:32;11541:2;11545:8;11555:5;11562:4;11535:5;:32::i;:::-;11417:157;;;:::o;20677:154::-;;;;;:::o;21472:153::-;;;;;:::o;11821:1733::-;11954:20;11977:13;;11954:36;;12018:1;12004:16;;:2;:16;;;12000:48;;;12029:19;;;;;;;;;;;;;;12000:48;12074:1;12062:8;:13;12058:44;;;12084:18;;;;;;;;;;;;;;12058:44;12113:61;12143:1;12147:2;12151:12;12165:8;12113:21;:61::i;:::-;12480:8;12445:12;:16;12458:2;12445:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12543:8;12503:12;:16;12516:2;12503:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12600:2;12567:11;:25;12579:12;12567:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;12666:15;12616:11;:25;12628:12;12616:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;12697:20;12720:12;12697:35;;12746:11;12775:8;12760:12;:23;12746:37;;12802:4;:23;;;;;12810:15;:2;:13;;;:15::i;:::-;12802:23;12798:628;;;12845:309;12900:12;12896:2;12875:38;;12892:1;12875:38;;;;;;;;;;;;12940:69;12979:1;12983:2;12987:14;;;;;;13003:5;12940:30;:69::i;:::-;12935:172;;13044:40;;;;;;;;;;;;;;12935:172;13149:3;13133:12;:19;;12845:309;;13233:12;13216:13;;:29;13212:43;;13247:8;;;13212:43;12798:628;;;13294:118;13349:14;;;;;;13345:2;13324:40;;13341:1;13324:40;;;;;;;;;;;;13407:3;13391:12;:19;;13294:118;;12798:628;13455:12;13439:13;:28;;;;11821:1733;;13487:60;13516:1;13520:2;13524:12;13538:8;13487:20;:60::i;:::-;11821:1733;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:343:17:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:137::-;1084:5;1115:6;1109:13;1100:22;;1131:30;1155:5;1131:30;:::i;:::-;1090:77;;;;:::o;1173:137::-;1218:5;1256:6;1243:20;1234:29;;1272:32;1298:5;1272:32;:::i;:::-;1224:86;;;;:::o;1316:141::-;1372:5;1403:6;1397:13;1388:22;;1419:32;1445:5;1419:32;:::i;:::-;1378:79;;;;:::o;1476:271::-;1531:5;1580:3;1573:4;1565:6;1561:17;1557:27;1547:2;;1598:1;1595;1588:12;1547:2;1638:6;1625:20;1663:78;1737:3;1729:6;1722:4;1714:6;1710:17;1663:78;:::i;:::-;1654:87;;1537:210;;;;;:::o;1753:139::-;1799:5;1837:6;1824:20;1815:29;;1853:33;1880:5;1853:33;:::i;:::-;1805:87;;;;:::o;1898:143::-;1955:5;1986:6;1980:13;1971:22;;2002:33;2029:5;2002:33;:::i;:::-;1961:80;;;;:::o;2047:262::-;2106:6;2155:2;2143:9;2134:7;2130:23;2126:32;2123:2;;;2171:1;2168;2161:12;2123:2;2214:1;2239:53;2284:7;2275:6;2264:9;2260:22;2239:53;:::i;:::-;2229:63;;2185:117;2113:196;;;;:::o;2315:407::-;2383:6;2391;2440:2;2428:9;2419:7;2415:23;2411:32;2408:2;;;2456:1;2453;2446:12;2408:2;2499:1;2524:53;2569:7;2560:6;2549:9;2545:22;2524:53;:::i;:::-;2514:63;;2470:117;2626:2;2652:53;2697:7;2688:6;2677:9;2673:22;2652:53;:::i;:::-;2642:63;;2597:118;2398:324;;;;;:::o;2728:552::-;2805:6;2813;2821;2870:2;2858:9;2849:7;2845:23;2841:32;2838:2;;;2886:1;2883;2876:12;2838:2;2929:1;2954:53;2999:7;2990:6;2979:9;2975:22;2954:53;:::i;:::-;2944:63;;2900:117;3056:2;3082:53;3127:7;3118:6;3107:9;3103:22;3082:53;:::i;:::-;3072:63;;3027:118;3184:2;3210:53;3255:7;3246:6;3235:9;3231:22;3210:53;:::i;:::-;3200:63;;3155:118;2828:452;;;;;:::o;3286:809::-;3381:6;3389;3397;3405;3454:3;3442:9;3433:7;3429:23;3425:33;3422:2;;;3471:1;3468;3461:12;3422:2;3514:1;3539:53;3584:7;3575:6;3564:9;3560:22;3539:53;:::i;:::-;3529:63;;3485:117;3641:2;3667:53;3712:7;3703:6;3692:9;3688:22;3667:53;:::i;:::-;3657:63;;3612:118;3769:2;3795:53;3840:7;3831:6;3820:9;3816:22;3795:53;:::i;:::-;3785:63;;3740:118;3925:2;3914:9;3910:18;3897:32;3956:18;3948:6;3945:30;3942:2;;;3988:1;3985;3978:12;3942:2;4016:62;4070:7;4061:6;4050:9;4046:22;4016:62;:::i;:::-;4006:72;;3868:220;3412:683;;;;;;;:::o;4101:401::-;4166:6;4174;4223:2;4211:9;4202:7;4198:23;4194:32;4191:2;;;4239:1;4236;4229:12;4191:2;4282:1;4307:53;4352:7;4343:6;4332:9;4328:22;4307:53;:::i;:::-;4297:63;;4253:117;4409:2;4435:50;4477:7;4468:6;4457:9;4453:22;4435:50;:::i;:::-;4425:60;;4380:115;4181:321;;;;;:::o;4508:407::-;4576:6;4584;4633:2;4621:9;4612:7;4608:23;4604:32;4601:2;;;4649:1;4646;4639:12;4601:2;4692:1;4717:53;4762:7;4753:6;4742:9;4738:22;4717:53;:::i;:::-;4707:63;;4663:117;4819:2;4845:53;4890:7;4881:6;4870:9;4866:22;4845:53;:::i;:::-;4835:63;;4790:118;4591:324;;;;;:::o;4921:425::-;5007:6;5015;5064:2;5052:9;5043:7;5039:23;5035:32;5032:2;;;5080:1;5077;5070:12;5032:2;5151:1;5140:9;5136:17;5123:31;5181:18;5173:6;5170:30;5167:2;;;5213:1;5210;5203:12;5167:2;5249:80;5321:7;5312:6;5301:9;5297:22;5249:80;:::i;:::-;5231:98;;;;5094:245;5022:324;;;;;:::o;5352:278::-;5419:6;5468:2;5456:9;5447:7;5443:23;5439:32;5436:2;;;5484:1;5481;5474:12;5436:2;5527:1;5552:61;5605:7;5596:6;5585:9;5581:22;5552:61;:::i;:::-;5542:71;;5498:125;5426:204;;;;:::o;5636:260::-;5694:6;5743:2;5731:9;5722:7;5718:23;5714:32;5711:2;;;5759:1;5756;5749:12;5711:2;5802:1;5827:52;5871:7;5862:6;5851:9;5847:22;5827:52;:::i;:::-;5817:62;;5773:116;5701:195;;;;:::o;5902:282::-;5971:6;6020:2;6008:9;5999:7;5995:23;5991:32;5988:2;;;6036:1;6033;6026:12;5988:2;6079:1;6104:63;6159:7;6150:6;6139:9;6135:22;6104:63;:::i;:::-;6094:73;;6050:127;5978:206;;;;:::o;6190:262::-;6249:6;6298:2;6286:9;6277:7;6273:23;6269:32;6266:2;;;6314:1;6311;6304:12;6266:2;6357:1;6382:53;6427:7;6418:6;6407:9;6403:22;6382:53;:::i;:::-;6372:63;;6328:117;6256:196;;;;:::o;6458:284::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:2;;;6593:1;6590;6583:12;6545:2;6636:1;6661:64;6717:7;6708:6;6697:9;6693:22;6661:64;:::i;:::-;6651:74;;6607:128;6535:207;;;;:::o;6748:118::-;6835:24;6853:5;6835:24;:::i;:::-;6830:3;6823:37;6813:53;;:::o;6872:109::-;6953:21;6968:5;6953:21;:::i;:::-;6948:3;6941:34;6931:50;;:::o;6987:360::-;7073:3;7101:38;7133:5;7101:38;:::i;:::-;7155:70;7218:6;7213:3;7155:70;:::i;:::-;7148:77;;7234:52;7279:6;7274:3;7267:4;7260:5;7256:16;7234:52;:::i;:::-;7311:29;7333:6;7311:29;:::i;:::-;7306:3;7302:39;7295:46;;7077:270;;;;;:::o;7353:364::-;7441:3;7469:39;7502:5;7469:39;:::i;:::-;7524:71;7588:6;7583:3;7524:71;:::i;:::-;7517:78;;7604:52;7649:6;7644:3;7637:4;7630:5;7626:16;7604:52;:::i;:::-;7681:29;7703:6;7681:29;:::i;:::-;7676:3;7672:39;7665:46;;7445:272;;;;;:::o;7723:377::-;7829:3;7857:39;7890:5;7857:39;:::i;:::-;7912:89;7994:6;7989:3;7912:89;:::i;:::-;7905:96;;8010:52;8055:6;8050:3;8043:4;8036:5;8032:16;8010:52;:::i;:::-;8087:6;8082:3;8078:16;8071:23;;7833:267;;;;;:::o;8106:366::-;8248:3;8269:67;8333:2;8328:3;8269:67;:::i;:::-;8262:74;;8345:93;8434:3;8345:93;:::i;:::-;8463:2;8458:3;8454:12;8447:19;;8252:220;;;:::o;8478:366::-;8620:3;8641:67;8705:2;8700:3;8641:67;:::i;:::-;8634:74;;8717:93;8806:3;8717:93;:::i;:::-;8835:2;8830:3;8826:12;8819:19;;8624:220;;;:::o;8850:366::-;8992:3;9013:67;9077:2;9072:3;9013:67;:::i;:::-;9006:74;;9089:93;9178:3;9089:93;:::i;:::-;9207:2;9202:3;9198:12;9191:19;;8996:220;;;:::o;9222:366::-;9364:3;9385:67;9449:2;9444:3;9385:67;:::i;:::-;9378:74;;9461:93;9550:3;9461:93;:::i;:::-;9579:2;9574:3;9570:12;9563:19;;9368:220;;;:::o;9594:366::-;9736:3;9757:67;9821:2;9816:3;9757:67;:::i;:::-;9750:74;;9833:93;9922:3;9833:93;:::i;:::-;9951:2;9946:3;9942:12;9935:19;;9740:220;;;:::o;9966:366::-;10108:3;10129:67;10193:2;10188:3;10129:67;:::i;:::-;10122:74;;10205:93;10294:3;10205:93;:::i;:::-;10323:2;10318:3;10314:12;10307:19;;10112:220;;;:::o;10338:366::-;10480:3;10501:67;10565:2;10560:3;10501:67;:::i;:::-;10494:74;;10577:93;10666:3;10577:93;:::i;:::-;10695:2;10690:3;10686:12;10679:19;;10484:220;;;:::o;10710:366::-;10852:3;10873:67;10937:2;10932:3;10873:67;:::i;:::-;10866:74;;10949:93;11038:3;10949:93;:::i;:::-;11067:2;11062:3;11058:12;11051:19;;10856:220;;;:::o;11082:366::-;11224:3;11245:67;11309:2;11304:3;11245:67;:::i;:::-;11238:74;;11321:93;11410:3;11321:93;:::i;:::-;11439:2;11434:3;11430:12;11423:19;;11228:220;;;:::o;11454:366::-;11596:3;11617:67;11681:2;11676:3;11617:67;:::i;:::-;11610:74;;11693:93;11782:3;11693:93;:::i;:::-;11811:2;11806:3;11802:12;11795:19;;11600:220;;;:::o;11826:400::-;11986:3;12007:84;12089:1;12084:3;12007:84;:::i;:::-;12000:91;;12100:93;12189:3;12100:93;:::i;:::-;12218:1;12213:3;12209:11;12202:18;;11990:236;;;:::o;12232:366::-;12374:3;12395:67;12459:2;12454:3;12395:67;:::i;:::-;12388:74;;12471:93;12560:3;12471:93;:::i;:::-;12589:2;12584:3;12580:12;12573:19;;12378:220;;;:::o;12604:366::-;12746:3;12767:67;12831:2;12826:3;12767:67;:::i;:::-;12760:74;;12843:93;12932:3;12843:93;:::i;:::-;12961:2;12956:3;12952:12;12945:19;;12750:220;;;:::o;12976:366::-;13118:3;13139:67;13203:2;13198:3;13139:67;:::i;:::-;13132:74;;13215:93;13304:3;13215:93;:::i;:::-;13333:2;13328:3;13324:12;13317:19;;13122:220;;;:::o;13348:366::-;13490:3;13511:67;13575:2;13570:3;13511:67;:::i;:::-;13504:74;;13587:93;13676:3;13587:93;:::i;:::-;13705:2;13700:3;13696:12;13689:19;;13494:220;;;:::o;13720:366::-;13862:3;13883:67;13947:2;13942:3;13883:67;:::i;:::-;13876:74;;13959:93;14048:3;13959:93;:::i;:::-;14077:2;14072:3;14068:12;14061:19;;13866:220;;;:::o;14092:366::-;14234:3;14255:67;14319:2;14314:3;14255:67;:::i;:::-;14248:74;;14331:93;14420:3;14331:93;:::i;:::-;14449:2;14444:3;14440:12;14433:19;;14238:220;;;:::o;14464:118::-;14551:24;14569:5;14551:24;:::i;:::-;14546:3;14539:37;14529:53;;:::o;14588:701::-;14869:3;14891:95;14982:3;14973:6;14891:95;:::i;:::-;14884:102;;15003:95;15094:3;15085:6;15003:95;:::i;:::-;14996:102;;15115:148;15259:3;15115:148;:::i;:::-;15108:155;;15280:3;15273:10;;14873:416;;;;;:::o;15295:222::-;15388:4;15426:2;15415:9;15411:18;15403:26;;15439:71;15507:1;15496:9;15492:17;15483:6;15439:71;:::i;:::-;15393:124;;;;:::o;15523:332::-;15644:4;15682:2;15671:9;15667:18;15659:26;;15695:71;15763:1;15752:9;15748:17;15739:6;15695:71;:::i;:::-;15776:72;15844:2;15833:9;15829:18;15820:6;15776:72;:::i;:::-;15649:206;;;;;:::o;15861:442::-;16010:4;16048:2;16037:9;16033:18;16025:26;;16061:71;16129:1;16118:9;16114:17;16105:6;16061:71;:::i;:::-;16142:72;16210:2;16199:9;16195:18;16186:6;16142:72;:::i;:::-;16224;16292:2;16281:9;16277:18;16268:6;16224:72;:::i;:::-;16015:288;;;;;;:::o;16309:640::-;16504:4;16542:3;16531:9;16527:19;16519:27;;16556:71;16624:1;16613:9;16609:17;16600:6;16556:71;:::i;:::-;16637:72;16705:2;16694:9;16690:18;16681:6;16637:72;:::i;:::-;16719;16787:2;16776:9;16772:18;16763:6;16719:72;:::i;:::-;16838:9;16832:4;16828:20;16823:2;16812:9;16808:18;16801:48;16866:76;16937:4;16928:6;16866:76;:::i;:::-;16858:84;;16509:440;;;;;;;:::o;16955:210::-;17042:4;17080:2;17069:9;17065:18;17057:26;;17093:65;17155:1;17144:9;17140:17;17131:6;17093:65;:::i;:::-;17047:118;;;;:::o;17171:313::-;17284:4;17322:2;17311:9;17307:18;17299:26;;17371:9;17365:4;17361:20;17357:1;17346:9;17342:17;17335:47;17399:78;17472:4;17463:6;17399:78;:::i;:::-;17391:86;;17289:195;;;;:::o;17490:419::-;17656:4;17694:2;17683:9;17679:18;17671:26;;17743:9;17737:4;17733:20;17729:1;17718:9;17714:17;17707:47;17771:131;17897:4;17771:131;:::i;:::-;17763:139;;17661:248;;;:::o;17915:419::-;18081:4;18119:2;18108:9;18104:18;18096:26;;18168:9;18162:4;18158:20;18154:1;18143:9;18139:17;18132:47;18196:131;18322:4;18196:131;:::i;:::-;18188:139;;18086:248;;;:::o;18340:419::-;18506:4;18544:2;18533:9;18529:18;18521:26;;18593:9;18587:4;18583:20;18579:1;18568:9;18564:17;18557:47;18621:131;18747:4;18621:131;:::i;:::-;18613:139;;18511:248;;;:::o;18765:419::-;18931:4;18969:2;18958:9;18954:18;18946:26;;19018:9;19012:4;19008:20;19004:1;18993:9;18989:17;18982:47;19046:131;19172:4;19046:131;:::i;:::-;19038:139;;18936:248;;;:::o;19190:419::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19361:248;;;:::o;19615:419::-;19781:4;19819:2;19808:9;19804:18;19796:26;;19868:9;19862:4;19858:20;19854:1;19843:9;19839:17;19832:47;19896:131;20022:4;19896:131;:::i;:::-;19888:139;;19786:248;;;:::o;20040:419::-;20206:4;20244:2;20233:9;20229:18;20221:26;;20293:9;20287:4;20283:20;20279:1;20268:9;20264:17;20257:47;20321:131;20447:4;20321:131;:::i;:::-;20313:139;;20211:248;;;:::o;20465:419::-;20631:4;20669:2;20658:9;20654:18;20646:26;;20718:9;20712:4;20708:20;20704:1;20693:9;20689:17;20682:47;20746:131;20872:4;20746:131;:::i;:::-;20738:139;;20636:248;;;:::o;20890:419::-;21056:4;21094:2;21083:9;21079:18;21071:26;;21143:9;21137:4;21133:20;21129:1;21118:9;21114:17;21107:47;21171:131;21297:4;21171:131;:::i;:::-;21163:139;;21061:248;;;:::o;21315:419::-;21481:4;21519:2;21508:9;21504:18;21496:26;;21568:9;21562:4;21558:20;21554:1;21543:9;21539:17;21532:47;21596:131;21722:4;21596:131;:::i;:::-;21588:139;;21486:248;;;:::o;21740:419::-;21906:4;21944:2;21933:9;21929:18;21921:26;;21993:9;21987:4;21983:20;21979:1;21968:9;21964:17;21957:47;22021:131;22147:4;22021:131;:::i;:::-;22013:139;;21911:248;;;:::o;22165:419::-;22331:4;22369:2;22358:9;22354:18;22346:26;;22418:9;22412:4;22408:20;22404:1;22393:9;22389:17;22382:47;22446:131;22572:4;22446:131;:::i;:::-;22438:139;;22336:248;;;:::o;22590:419::-;22756:4;22794:2;22783:9;22779:18;22771:26;;22843:9;22837:4;22833:20;22829:1;22818:9;22814:17;22807:47;22871:131;22997:4;22871:131;:::i;:::-;22863:139;;22761:248;;;:::o;23015:419::-;23181:4;23219:2;23208:9;23204:18;23196:26;;23268:9;23262:4;23258:20;23254:1;23243:9;23239:17;23232:47;23296:131;23422:4;23296:131;:::i;:::-;23288:139;;23186:248;;;:::o;23440:419::-;23606:4;23644:2;23633:9;23629:18;23621:26;;23693:9;23687:4;23683:20;23679:1;23668:9;23664:17;23657:47;23721:131;23847:4;23721:131;:::i;:::-;23713:139;;23611:248;;;:::o;23865:419::-;24031:4;24069:2;24058:9;24054:18;24046:26;;24118:9;24112:4;24108:20;24104:1;24093:9;24089:17;24082:47;24146:131;24272:4;24146:131;:::i;:::-;24138:139;;24036:248;;;:::o;24290:222::-;24383:4;24421:2;24410:9;24406:18;24398:26;;24434:71;24502:1;24491:9;24487:17;24478:6;24434:71;:::i;:::-;24388:124;;;;:::o;24518:129::-;24552:6;24579:20;;:::i;:::-;24569:30;;24608:33;24636:4;24628:6;24608:33;:::i;:::-;24559:88;;;:::o;24653:75::-;24686:6;24719:2;24713:9;24703:19;;24693:35;:::o;24734:307::-;24795:4;24885:18;24877:6;24874:30;24871:2;;;24907:18;;:::i;:::-;24871:2;24945:29;24967:6;24945:29;:::i;:::-;24937:37;;25029:4;25023;25019:15;25011:23;;24800:241;;;:::o;25047:98::-;25098:6;25132:5;25126:12;25116:22;;25105:40;;;:::o;25151:99::-;25203:6;25237:5;25231:12;25221:22;;25210:40;;;:::o;25256:168::-;25339:11;25373:6;25368:3;25361:19;25413:4;25408:3;25404:14;25389:29;;25351:73;;;;:::o;25430:169::-;25514:11;25548:6;25543:3;25536:19;25588:4;25583:3;25579:14;25564:29;;25526:73;;;;:::o;25605:148::-;25707:11;25744:3;25729:18;;25719:34;;;;:::o;25759:305::-;25799:3;25818:20;25836:1;25818:20;:::i;:::-;25813:25;;25852:20;25870:1;25852:20;:::i;:::-;25847:25;;26006:1;25938:66;25934:74;25931:1;25928:81;25925:2;;;26012:18;;:::i;:::-;25925:2;26056:1;26053;26049:9;26042:16;;25803:261;;;;:::o;26070:185::-;26110:1;26127:20;26145:1;26127:20;:::i;:::-;26122:25;;26161:20;26179:1;26161:20;:::i;:::-;26156:25;;26200:1;26190:2;;26205:18;;:::i;:::-;26190:2;26247:1;26244;26240:9;26235:14;;26112:143;;;;:::o;26261:348::-;26301:7;26324:20;26342:1;26324:20;:::i;:::-;26319:25;;26358:20;26376:1;26358:20;:::i;:::-;26353:25;;26546:1;26478:66;26474:74;26471:1;26468:81;26463:1;26456:9;26449:17;26445:105;26442:2;;;26553:18;;:::i;:::-;26442:2;26601:1;26598;26594:9;26583:20;;26309:300;;;;:::o;26615:191::-;26655:4;26675:20;26693:1;26675:20;:::i;:::-;26670:25;;26709:20;26727:1;26709:20;:::i;:::-;26704:25;;26748:1;26745;26742:8;26739:2;;;26753:18;;:::i;:::-;26739:2;26798:1;26795;26791:9;26783:17;;26660:146;;;;:::o;26812:96::-;26849:7;26878:24;26896:5;26878:24;:::i;:::-;26867:35;;26857:51;;;:::o;26914:90::-;26948:7;26991:5;26984:13;26977:21;26966:32;;26956:48;;;:::o;27010:149::-;27046:7;27086:66;27079:5;27075:78;27064:89;;27054:105;;;:::o;27165:126::-;27202:7;27242:42;27235:5;27231:54;27220:65;;27210:81;;;:::o;27297:77::-;27334:7;27363:5;27352:16;;27342:32;;;:::o;27380:154::-;27464:6;27459:3;27454;27441:30;27526:1;27517:6;27512:3;27508:16;27501:27;27431:103;;;:::o;27540:307::-;27608:1;27618:113;27632:6;27629:1;27626:13;27618:113;;;27717:1;27712:3;27708:11;27702:18;27698:1;27693:3;27689:11;27682:39;27654:2;27651:1;27647:10;27642:15;;27618:113;;;27749:6;27746:1;27743:13;27740:2;;;27829:1;27820:6;27815:3;27811:16;27804:27;27740:2;27589:258;;;;:::o;27853:320::-;27897:6;27934:1;27928:4;27924:12;27914:22;;27981:1;27975:4;27971:12;28002:18;27992:2;;28058:4;28050:6;28046:17;28036:27;;27992:2;28120;28112:6;28109:14;28089:18;28086:38;28083:2;;;28139:18;;:::i;:::-;28083:2;27904:269;;;;:::o;28179:281::-;28262:27;28284:4;28262:27;:::i;:::-;28254:6;28250:40;28392:6;28380:10;28377:22;28356:18;28344:10;28341:34;28338:62;28335:2;;;28403:18;;:::i;:::-;28335:2;28443:10;28439:2;28432:22;28222:238;;;:::o;28466:233::-;28505:3;28528:24;28546:5;28528:24;:::i;:::-;28519:33;;28574:66;28567:5;28564:77;28561:2;;;28644:18;;:::i;:::-;28561:2;28691:1;28684:5;28680:13;28673:20;;28509:190;;;:::o;28705:176::-;28737:1;28754:20;28772:1;28754:20;:::i;:::-;28749:25;;28788:20;28806:1;28788:20;:::i;:::-;28783:25;;28827:1;28817:2;;28832:18;;:::i;:::-;28817:2;28873:1;28870;28866:9;28861:14;;28739:142;;;;:::o;28887:180::-;28935:77;28932:1;28925:88;29032:4;29029:1;29022:15;29056:4;29053:1;29046:15;29073:180;29121:77;29118:1;29111:88;29218:4;29215:1;29208:15;29242:4;29239:1;29232:15;29259:180;29307:77;29304:1;29297:88;29404:4;29401:1;29394:15;29428:4;29425:1;29418:15;29445:180;29493:77;29490:1;29483:88;29590:4;29587:1;29580:15;29614:4;29611:1;29604:15;29631:102;29672:6;29723:2;29719:7;29714:2;29707:5;29703:14;29699:28;29689:38;;29679:54;;;:::o;29739:222::-;29879:34;29875:1;29867:6;29863:14;29856:58;29948:5;29943:2;29935:6;29931:15;29924:30;29845:116;:::o;29967:225::-;30107:34;30103:1;30095:6;30091:14;30084:58;30176:8;30171:2;30163:6;30159:15;30152:33;30073:119;:::o;30198:178::-;30338:30;30334:1;30326:6;30322:14;30315:54;30304:72;:::o;30382:176::-;30522:28;30518:1;30510:6;30506:14;30499:52;30488:70;:::o;30564:182::-;30704:34;30700:1;30692:6;30688:14;30681:58;30670:76;:::o;30752:165::-;30892:17;30888:1;30880:6;30876:14;30869:41;30858:59;:::o;30923:181::-;31063:33;31059:1;31051:6;31047:14;31040:57;31029:75;:::o;31110:220::-;31250:34;31246:1;31238:6;31234:14;31227:58;31319:3;31314:2;31306:6;31302:15;31295:28;31216:114;:::o;31336:171::-;31476:23;31472:1;31464:6;31460:14;31453:47;31442:65;:::o;31513:229::-;31653:34;31649:1;31641:6;31637:14;31630:58;31722:12;31717:2;31709:6;31705:15;31698:37;31619:123;:::o;31748:155::-;31888:7;31884:1;31876:6;31872:14;31865:31;31854:49;:::o;31909:182::-;32049:34;32045:1;32037:6;32033:14;32026:58;32015:76;:::o;32097:178::-;32237:30;32233:1;32225:6;32221:14;32214:54;32203:72;:::o;32281:166::-;32421:18;32417:1;32409:6;32405:14;32398:42;32387:60;:::o;32453:222::-;32593:34;32589:1;32581:6;32577:14;32570:58;32662:5;32657:2;32649:6;32645:15;32638:30;32559:116;:::o;32681:177::-;32821:29;32817:1;32809:6;32805:14;32798:53;32787:71;:::o;32864:178::-;33004:30;33000:1;32992:6;32988:14;32981:54;32970:72;:::o;33048:122::-;33121:24;33139:5;33121:24;:::i;:::-;33114:5;33111:35;33101:2;;33160:1;33157;33150:12;33101:2;33091:79;:::o;33176:116::-;33246:21;33261:5;33246:21;:::i;:::-;33239:5;33236:32;33226:2;;33282:1;33279;33272:12;33226:2;33216:76;:::o;33298:120::-;33370:23;33387:5;33370:23;:::i;:::-;33363:5;33360:34;33350:2;;33408:1;33405;33398:12;33350:2;33340:78;:::o;33424:122::-;33497:24;33515:5;33497:24;:::i;:::-;33490:5;33487:35;33477:2;;33536:1;33533;33526:12;33477:2;33467:79;:::o

Swarm Source

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