Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6090916 | 46 hrs ago | 0 ETH | ||||
6090916 | 46 hrs ago | 0 ETH | ||||
6090916 | 46 hrs ago | 0 ETH | ||||
6090915 | 46 hrs ago | 0 ETH | ||||
6090915 | 46 hrs ago | 0 ETH | ||||
6090915 | 46 hrs ago | 0 ETH | ||||
6090915 | 46 hrs ago | 0 ETH | ||||
6090915 | 46 hrs ago | 0 ETH | ||||
6090915 | 46 hrs ago | 0 ETH | ||||
6090915 | 46 hrs ago | 0 ETH | ||||
6090913 | 46 hrs ago | 0 ETH | ||||
6090913 | 46 hrs ago | 0 ETH | ||||
6090913 | 46 hrs ago | 0 ETH | ||||
6090913 | 46 hrs ago | 0 ETH | ||||
6090913 | 46 hrs ago | 0 ETH | ||||
6090913 | 46 hrs ago | 0 ETH | ||||
6090913 | 46 hrs ago | 0 ETH | ||||
6090911 | 46 hrs ago | 0 ETH | ||||
6090911 | 46 hrs ago | 0 ETH | ||||
6090911 | 46 hrs ago | 0 ETH | ||||
6090911 | 46 hrs ago | 0 ETH | ||||
6090911 | 46 hrs ago | 0 ETH | ||||
6090911 | 46 hrs ago | 0 ETH | ||||
6090911 | 46 hrs ago | 0 ETH | ||||
6090909 | 46 hrs ago | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Purged
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract Purged is ERC20 { uint8 public percentOfDollar = 100; address private _owner; address private usdcTokenAddress; uint256 public presaleAmount = 0; uint256 constant private million = 1000000; uint256 public bank = 1000000000000000; uint256 public totalPresaleSold = 0; uint256 public dailyCoinBurn; uint256[256] private totalCoinBurn; mapping(address => bool) private contractAddresses; mapping(address => uint256) public presalePurchases; mapping(string => address) private referralCode; mapping(address => uint256) public playerLuckbox; constructor(address _usdcTokenAddress) ERC20("Purged", "PURGED") { _owner = msg.sender; usdcTokenAddress = _usdcTokenAddress; } modifier onlyOwner() { require(msg.sender == _owner, "Caller is not the owner"); _; } modifier onlyPurgeGameContract() { require(contractAddresses[msg.sender], "Caller is not a Purge Game contract"); _; } function resetDailyCoinBurn() external onlyPurgeGameContract{ dailyCoinBurn = 0; } function resetSeasonCoinBurn() external onlyPurgeGameContract{ for (uint8 i = 0; i < 256; i++) { totalCoinBurn[i] = 0; } } function getSeasonCoinBurn(uint8[] calldata traits) external view returns (uint256[] memory) { uint256[] memory burnCounts = new uint256[](traits.length); uint256 numberOfTraits = traits.length; for (uint8 i = 0; i < numberOfTraits; i++) { burnCounts[i] = totalCoinBurn[traits[i]]; } return burnCounts; } function getPlayerLuckbox(address player) external view returns(uint256){ return(playerLuckbox[player]); } function addToLuckbox(address player, uint256 amount) external onlyPurgeGameContract{ playerLuckbox[player] += amount; } // Allows users to create a referral code string that will pay them $PURGED when their referrals mint tokens. function createReferralCode(string calldata _referralCode) external { bytes memory referralCodeBytes = bytes(_referralCode); uint256 referralCodeLength = referralCodeBytes.length; require( referralCodeLength != 0 && referralCodeLength <= 32, "Invalid referral code length" ); require(referralCode[_referralCode] == address(0), "Referral code is taken"); referralCode[_referralCode] = msg.sender; } function getReferralCodeOwner(string calldata _referralCode) external view returns(address){ return(referralCode[_referralCode]); } function payReferrer(uint256 amount, string calldata _referralCode, address sender) external onlyPurgeGameContract{ address shill; shill = referralCode[_referralCode]; if (shill == address(0)) { bank += amount; } else{ _mint(shill, amount); emit Referred(_referralCode, shill, amount, sender); } } function addContractAddress(address _purgeGameContract) external onlyOwner{ contractAddresses[_purgeGameContract] = true; } function removeContractAddress(address _purgeGameContract) external onlyOwner{ contractAddresses[_purgeGameContract] = false; } function mintInGame(address yourAddress, uint256 _amount) external onlyPurgeGameContract{ if (yourAddress == _owner){ bank += _amount; } else{ _mint(yourAddress, _amount); } } function burnInGame(address yourAddress, uint256 _amount) external onlyPurgeGameContract{ _burn(yourAddress,_amount); } function luckyCoinBurn(uint256 amount, uint8 trait) external { require(amount > 5 * million && amount <= balanceOf(msg.sender), "Invalid amount"); require(trait >= 0 && trait <= 255, "trait ID must be between 0 and 255"); _burn(msg.sender, amount); totalCoinBurn[trait] += amount; dailyCoinBurn += amount; playerLuckbox[msg.sender] += amount; emit CoinBurned(msg.sender, trait, amount); } function airdrop(address[] calldata to, uint256[] calldata _amount) external onlyOwner { uint256 numberOfRecipients = to.length; require (numberOfRecipients == _amount.length, "Arrays must be the same length"); for (uint16 c = 0; c < numberOfRecipients;c++){ uint256 amount = _amount[c]; require(amount <= bank, "Not enough coins in the bank"); bank -= amount; _mint(to[c], amount); } } function presale(uint256 amount) external { require(amount > 5, "Amount must be greater than 5 coins"); amount *= million; uint256 totalCost = amount * percentOfDollar / 100; require(totalPresaleSold + amount <= presaleAmount, "Exceeds maximum presale amount"); require(amount <= bank, "Not enough coins in the bank"); require(presalePurchases[msg.sender] + amount <= 1000 * million, "1k max"); IERC20 usdc = IERC20(usdcTokenAddress); require(usdc.transferFrom(msg.sender, address(this), totalCost), "USDC transfer failed"); totalPresaleSold += amount; presalePurchases[msg.sender] += amount; bank -= amount; _mint(msg.sender, amount); } function setPresale(uint256 _amount, uint8 _percentOfDollar) external onlyOwner { percentOfDollar = _percentOfDollar; presaleAmount = _amount * million; } function withdrawUSDC() external onlyOwner { IERC20 usdc = IERC20(usdcTokenAddress); require(usdc.transfer(_owner, usdc.balanceOf(address(this))), "USDC transfer failed"); } function decimals() public view virtual override returns (uint8) { return 6; } event CoinBurned(address from, uint32 tokenId, uint256 amount); event Referred(string referralCode, address shill, uint256 amount, address from); event LuckboxFail(address[] players); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"_usdcTokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint32","name":"tokenId","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CoinBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"players","type":"address[]"}],"name":"LuckboxFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"referralCode","type":"string"},{"indexed":false,"internalType":"address","name":"shill","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"from","type":"address"}],"name":"Referred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_purgeGameContract","type":"address"}],"name":"addContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addToLuckbox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bank","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"yourAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnInGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_referralCode","type":"string"}],"name":"createReferralCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dailyCoinBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getPlayerLuckbox","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_referralCode","type":"string"}],"name":"getReferralCodeOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"traits","type":"uint8[]"}],"name":"getSeasonCoinBurn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"trait","type":"uint8"}],"name":"luckyCoinBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"yourAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintInGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"_referralCode","type":"string"},{"internalType":"address","name":"sender","type":"address"}],"name":"payReferrer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"percentOfDollar","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"playerLuckbox","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalePurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_purgeGameContract","type":"address"}],"name":"removeContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetDailyCoinBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetSeasonCoinBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_percentOfDollar","type":"uint8"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPresaleSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawUSDC","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100036b62d7dfe014ba86f2dbacab535ae7d2004dcfca61d0d107c8c2de717a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007ff6ae4fb2c2b7fbf49b670143dff116ca867411
Deployed Bytecode
0x000200000000000200070000000000020000000003020019000000000801034f00010000000103550000006001100270000002e50210019700000001003001900000003f0000c13d0000008001000039000000400010043f000000040020008c000000620000413d000000000108043b000000e001100270000002f30010009c000000640000a13d000002f40010009c0000009c0000213d000003010010009c000000e90000a13d000003020010009c000001870000a13d000003030010009c000002b20000613d000003040010009c000002bf0000613d000003050010009c000000620000c13d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000002401800370000000000101043b000700000001001d000000ff0010008c000000620000213d0000000401800370000000000101043b000003380010009c000005a70000413d000600000001001d0000000001000411000000000010043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a0000000602000029000000000012004b000006e40000a13d000000400100043d000005a80000013d0000000001000416000000000001004b000000620000c13d0000001f01200039000002e6011001970000008001100039000000400010043f0000001f0320018f000002e7042001980000008001400039000000500000613d0000008005000039000000000608034f000000006706043c0000000005750436000000000015004b0000004c0000c13d000000000003004b0000005d0000613d000000000448034f0000000303300210000000000501043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000310435000000200020008c000000620000413d000000800600043d000002e80060009c000000a70000a13d000000000100001900000b92000104300000030d0010009c000000c10000a13d0000030e0010009c000001070000a13d0000030f0010009c000001c00000a13d000003100010009c000002cd0000613d000003110010009c000002dc0000613d000003120010009c000000620000c13d000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000002ec0010009c000000620000213d00000004011000390b9009870000040f0000001f0420018f00000356052001980000000106100367000000400100043d0000000003510019000000870000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b000000830000c13d000000000004004b000000940000613d000000000556034f0000000304400210000000000603043300000000064601cf000000000646022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000464019f000000000043043500000000032100190000010d04000039000000000043043500000020022000390b900b710000040f000000000101041a000002e801100197000004870000013d000002f50010009c0000013d0000a13d000002f60010009c000001e30000a13d000002f70010009c000002e10000613d000002f80010009c000002f60000613d000002f90010009c000002960000613d000000620000013d000000400300043d000002e90030009c000000bb0000213d0000004001300039000000400010043f0000000605000039000000000a530436000002ea0100004100000000001a0435000000400700043d000002e90070009c000000bb0000213d0000004001700039000000400010043f0000000004570436000002eb0100004100000000001404350000000009030433000002ec0090009c000002a20000a13d0000034f01000041000000000010043f0000004101000039000000040010043f000003500100004100000b92000104300000031a0010009c000001480000213d000003200010009c000002010000213d000003230010009c000002ff0000613d000003240010009c000000620000c13d0000000001000416000000000001004b000000620000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002ac0000c13d000000800010043f000000000005004b000001010000613d000000000030043f000000020020008c000005bb0000413d000003550200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000000e00000413d000006270000013d000003080010009c000002380000213d0000030b0010009c000003040000613d0000030c0010009c000000620000c13d0000000001000416000000000001004b000000620000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002ac0000c13d000000800010043f000000000005004b000005b80000c13d0000035701200197000000a00010043f000000000004004b000000c001000039000000a001006039000006280000013d000003150010009c000002570000213d000003180010009c000003090000613d000003190010009c000000620000c13d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c7000080100200003900060000000803530b900b8b0000040f000000060300035f0000000100200190000000620000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a0000000602000029000000000021001a0000095f0000413d0000000003210019000006010000013d000002fc0010009c0000026c0000213d000002ff0010009c0000034b0000613d000003000010009c000000620000c13d0000000001000416000000000001004b000000620000c13d00000007010000390000036f0000013d0000031b0010009c0000028b0000213d0000031e0010009c0000036b0000613d0000031f0010009c000000620000c13d000000640020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000002401800370000000000101043b000600000001001d000002e80010009c000000620000213d0000004401800370000000000101043b000500000001001d0000000701000029000000000010043f0000000101000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a000003580010009c0000081b0000613d000000050310006c000008180000813d000000400100043d00000044021000390000035203000041000000000032043500000024021000390000001d03000039000005ad0000013d000003060010009c000003730000613d000003070010009c000000620000c13d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a000000060310006c000006010000813d000000400100043d00000064021000390000033d03000041000000000032043500000044021000390000033e03000041000000000032043500000024021000390000002503000039000005240000013d000003130010009c000003e10000613d000003140010009c000000620000c13d000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000000501000039000000000101041a0000000801100270000002e8011001970000000002000411000000000012004b000000000100003900000001010060390b9009ca0000040f0000000701000029000000000010043f0000010b01000039000000200010043f000000400200003900000000010000190b900b710000040f000000000301041a0000035702300197000000000021041b000000000100001900000b910001042e000002fa0010009c0000045f0000613d000002fb0010009c000000620000c13d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000002e80010009c000000620000213d0000002402800370000000000202043b000700000002001d000002e80020009c000000620000213d000000000010043f0000000101000039000000200010043f000000400200003900000000010000190b900b710000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002da0000013d000003210010009c000004790000613d000003220010009c000000620000c13d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000000001000411000000000010043f0000010b01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a000000ff001001900000051b0000613d0000000701000029000000000010043f0000010e01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d00000024020000390000000102200367000000000202043b000000000101043b000000000301041a000000000023001a0000095f0000413d0000000002230019000000000021041b000000000100001900000b910001042e000003090010009c000002960000613d0000030a0010009c000000620000c13d0000000001000416000000000001004b000000620000c13d0000000001000411000000000010043f0000010b01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a000000ff001001900000051b0000613d00000000010000190000000b02100039000000000002041b000000ff0010008c0000000101100039000002510000c13d0000095f0000013d000003160010009c0000048e0000613d000003170010009c000000620000c13d0000000001000416000000000001004b000000620000c13d0000000001000411000000000010043f0000010b01000039000000200010043f000000400200003900000000010000190b900b710000040f000000000101041a000000ff0110018f0b9009b30000040f0000000a01000039000000000001041b000000000100001900000b910001042e000002fd0010009c000004de0000613d000002fe0010009c000000620000c13d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000000001000411000000000010043f0000010b01000039000000200010043f000000400200003900000000010000190b900b710000040f000000000101041a000000ff0110018f0b9009b30000040f00000024010000390000000101100367000000000201043b00000007010000290b900b0e0000040f000000000100001900000b910001042e0000031c0010009c000004fd0000613d0000031d0010009c000000620000c13d0000000001000416000000000001004b000000620000c13d0000000601000039000000800010043f000003250100004100000b910001042e000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000002e80010009c000000620000213d000000000010043f0000010e01000039000002bd0000013d0000000308000039000000000108041a0000000102100190000000010b1002700000007f0bb0618f0000001f00b0008c00000000010000390000000101002039000000000012004b0000052f0000613d0000034f01000041000000000010043f0000002201000039000000040010043f000003500100004100000b9200010430000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000002e80010009c000000620000213d000000000010043f0000010c01000039000000200010043f000002d80000013d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000201043b000002e80020009c000000620000213d0000002401800370000000000301043b00000000010004110b900a490000040f000004860000013d000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000002e80010009c000000620000213d000000000010043f000000200000043f000000400200003900000000010000190b900b710000040f0000036f0000013d0000000001000416000000000001004b000000620000c13d00000008010000390000036f0000013d000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000000050010008c0000057c0000213d0000032c01000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f0000033101000041000000c40010043f0000033201000041000000e40010043f000003330100004100000b92000104300000000001000416000000000001004b000000620000c13d0000000501000039000000000101041a000000ff0110018f000000800010043f000003250100004100000b910001042e0000000001000416000000000001004b000000620000c13d0000000a010000390000036f0000013d0000000001000416000000000001004b000000620000c13d00000009010000390000036f0000013d000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000301043b000002ec0030009c000000620000213d0000002301300039000000000021004b000000620000813d0000000401300039000000000118034f000000000101043b000002ec0010009c000000620000213d000000240330003900000005041002100000000005340019000000000025004b000000620000213d0000003f054000390000034e055001970000034a0050009c000000bb0000213d0000008005500039000000400050043f000000800010043f0000001f0540018f000000000004004b000003300000613d000000000228034f000000a004400039000000a006000039000000002702043c0000000006760436000000000046004b0000032c0000c13d000000000005004b000000000001004b000007760000c13d000000400100043d00000020020000390000000002210436000000800300043d00000000003204350000004002100039000000000003004b000003420000613d000000a0040000390000000005000019000000004604043400000000026204360000000105500039000000000035004b0000033d0000413d0000000002120049000002e50020009c000002e5020080410000006002200210000002e50010009c000002e5010080410000004001100210000000000112019f00000b910001042e000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000000501000039000000000101041a0000000801100270000002e8011001970000000002000411000000000012004b000000000100003900000001010060390b9009ca0000040f0000000701000029000000000010043f0000010b01000039000000200010043f000000400200003900000000010000190b900b710000040f000000000301041a000003570230019700000001022001bf000000000021041b000000000100001900000b910001042e0000000001000416000000000001004b000000620000c13d0000000201000039000000000101041a000000800010043f000003250100004100000b910001042e000000640020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d0000002401800370000000000101043b000002ec0010009c000000620000213d0000002303100039000000000023004b000000620000813d000500040010003d0000000503800360000000000303043b000600000003001d000002ec0030009c000000620000213d00000006011000290000002401100039000000000021004b000000620000213d0000004401800370000000000101043b000400000001001d000002e80010009c000000620000213d0000000001000411000000000010043f0000010b01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a000000ff001001900000051b0000613d000000060100002900000356021001980003001f00100193000000400100043d000200000002001d000000000221001900000005030000290000002003300039000500000003001d0000000103300367000003b30000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000003af0000c13d000000030000006b000003c10000613d000000020330036000000003040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000060400002900000000024100190000010d030000390000000000320435000002e50010009c000002e5010080410000004001100210000003400040009c000003400200004100000000020440190000006002200210000000000112019f0000000002000414000002e50020009c000002e502008041000000c002200210000000000121019f000003410110009a00008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a000102e80010019c000008bf0000c13d0000000801000039000000000101041a000000070010002a0000095f0000413d0000000702000029000006180000013d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000301043b000002ec0030009c000000620000213d0000002301300039000000000021004b000000620000813d0000000401300039000000000118034f000000000101043b000002ec0010009c000000620000213d000400240030003d00000005031002100000000403300029000000000023004b000000620000213d0000002403800370000000000303043b000002ec0030009c000000620000213d0000002304300039000000000024004b000000620000813d0000000404300039000000000448034f000000000404043b000300000004001d000002ec0040009c000000620000213d000200240030003d000000030300002900000005033002100000000203300029000000000023004b000000620000213d0000000502000039000000000202041a0000000802200270000002e8022001970000000003000411000000000023004b000005720000c13d000000030010006c0000092a0000c13d000000030000006b000008160000613d00000008040000390000000005000019000000050150021000000002031000290000000102000367000000000332034f000000000603043b000000000304041a000000000363004b000009650000413d000000000034041b0000000401100029000000000112034f000000000101043b000002e80010009c000000620000213d000002e8031001980000071f0000613d0000000201000039000000000101041a000000000061001a0000095f0000413d00000000016100190000000202000039000000000012041b000500000003001d000000000030043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c70000801002000039000600000005001d000700000006001d0b900b8b0000040f00000007030000290000000100200190000000620000613d000000000101043b000000000201041a000000000032001a00000005060000290000095f0000413d0000000002320019000000000021041b000000400100043d0000000000310435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f000002ed011001c70000800d020000390000000303000039000003420400004100000000050000190b900b860000040f000000060100002900000008040000390000000100200190000000620000613d0000ffff0010008c0000095f0000613d00000001011000390000ffff0510018f000000030050006c000004170000413d000008160000013d0000000001000416000000000001004b000000620000c13d0000000501000039000000000101041a0000000801100270000002e8011001970000000002000411000000000012004b000005720000c13d0000000601000039000000000201041a0000033401000041000000800010043f0000000001000410000000840010043f0000000001000414000002e802200197000000040020008c000600000002001d000005bd0000c13d0000000003000031000000200030008c00000020040000390000000004034019000005e10000013d000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000201043b000002e80020009c000000620000213d0000002401800370000000000301043b00000000010004110b9009f20000040f0000000101000039000000400200043d0000000000120435000002e50020009c000002e50200804100000040012002100000033c011001c700000b910001042e000000240020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000301043b000002ec0030009c000000620000213d0000002301300039000000000021004b000000620000813d0000000401300039000000000418034f000000000404043b000700000004001d000002ec0040009c000000620000213d00000007033000290000002403300039000000000023004b000000620000213d00000007060000290000001f0360003900000356033001970000003f0330003900000356033001970000034a0030009c000000bb0000213d0000008003300039000000400030043f000000800060043f00000356076001980000001f0960018f000000200a1000390000000001a8034f000000a002700039000004ba0000613d000000a003000039000000000401034f000000004504043c0000000003530436000000000023004b000004b60000c13d000000000009004b000004c70000613d000000000371034f0000000304900210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a0026000390000000000020435000000400200043d000000800300043d000000210330008a000003590030009c0000078e0000213d00000044012000390000034d03000041000000000031043500000024012000390000001c0300003900000000003104350000032c010000410000000000120435000000040120003900000020030000390000000000310435000002e50020009c000002e50200804100000040012002100000032a011001c700000b9200010430000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000002401800370000000000201043b000000ff0020008c000000620000213d0000000401800370000000000101043b0000000503000039000000000403041a0000000805400270000002e8055001970000000006000411000000000056004b000005720000c13d0000035704400197000000000224019f000000000023041b00000326021000d1000000000001004b000004f90000613d00000000011200d9000003260010009c0000095f0000c13d0000000701000039000000000021041b000000000100001900000b910001042e000000440020008c000000620000413d0000000001000416000000000001004b000000620000c13d0000000401800370000000000101043b000700000001001d000002e80010009c000000620000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000010b01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a000000ff001001900000060c0000c13d000000400100043d0000006402100039000003530300004100000000003204350000004402100039000003540300004100000000003204350000002402100039000000230300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000033f011001c700000b92000104300000002000b0008c000700000006001d000500000007001d000600000004001d0000055a0000413d00010000000b001d00020000000a001d000300000003001d000400000009001d000000000080043f0000000001000414000002e50010009c000002e501008041000000c001100210000002ed011001c700008010020000390b900b8b0000040f00000007060000290000000100200190000000620000613d00000004090000290000001f029000390000000502200270000000200090008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000006050000390000000507000029000000060400002900000003080000390000000303000029000000020a0000290000055a0000813d000000000002041b0000000102200039000000000012004b000005560000413d0000001f0090008c0000059c0000a13d000300000003001d000400000009001d000000000080043f0000000001000414000002e50010009c000002e501008041000000c001100210000002ed011001c700008010020000390b900b8b0000040f00000007060000290000000100200190000000620000613d00000004090000290000035602900198000000000101043b000000030a000029000006450000c13d000000200300003900000005070000290000000308000039000006530000013d0000032c01000041000000800010043f0000002001000039000000840010043f0000001701000039000000a40010043f0000034801000041000000c40010043f0000032f0100004100000b920001043000000326031000d100000000011300d9000003260010009c0000095f0000c13d0000000501000039000000000101041a000000ff0110018f00000000043100a9000000000003004b000005890000613d00000000023400d9000000000021004b0000095f0000c13d0000000901000039000000000101041a000000000031001a0000095f0000413d00000000013100190000000702000039000000000202041a000000000021004b000006a80000a13d0000032c01000041000000800010043f0000002001000039000000840010043f0000001e01000039000000a40010043f0000033001000041000000c40010043f0000032f0100004100000b9200010430000000000009004b0000000001000019000005a00000613d00000000010a04330000000302900210000003580220027f0000035802200167000000000121016f0000000102900210000000000121019f000006610000013d000000800100003900000044021000390000033b03000041000000000032043500000024021000390000000e0300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000032a011001c700000b9200010430000000000030043f000000020020008c0000061d0000813d000000a001000039000006280000013d000002e50010009c000002e501008041000000c00110021000000335011001c70b900b8b0000040f000000800a0000390000006003100270000002e503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000005d10000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000005cd0000c13d000000000006004b000005de0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000006390000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000620000413d000000800200043d00000336030000410000000705000029000000000035043500000084031001bf00000000040004110000000000430435000000a403100039000000000023043500000000030004140000000602000029000000040020008c000006b60000c13d0000000001150019000000400010043f00000007010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000620000c13d0b9009de0000040f000000000100001900000b910001042e000000000100041100000007020000290b9009f20000040f000000400100043d00000001020000390000000000210435000002e50010009c000002e50100804100000040011002100000033c011001c700000b910001042e0000000501000039000000000101041a00000008011002700000000703000029000000000131013f000002e8001001980000071d0000c13d0000000801000039000000000101041a0000000602000029000000000021001a0000095f0000413d00000000012100190000000802000039000000000012041b000000000100001900000b910001042e000003470200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000061f0000413d000000c001300039000000800210008a00000080010000390b9009a10000040f000000400100043d000700000001001d00000080020000390b9009720000040f00000007020000290000000001210049000002e50010009c000002e5010080410000006001100210000002e50020009c000002e5020080410000004002200210000000000121019f00000b910001042e0000001f0530018f000002e706300198000000400200043d0000000004620019000007630000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006400000c13d000007630000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050700002900000003080000390000000005a300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000064c0000c13d000000000092004b0000065d0000813d0000000302900210000000f80220018f000003580220027f00000358022001670000000003a300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf00000006050000390000000604000029000000000018041b0000000009070433000002ec0090009c000000bb0000213d0000000408000039000000000108041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000002ac0000c13d000000200030008c000006930000413d000300000003001d000400000009001d000000000080043f0000000001000414000002e50010009c000002e501008041000000c001100210000002ed011001c700008010020000390b900b8b0000040f00000007060000290000000100200190000000620000613d00000004090000290000001f029000390000000502200270000000200090008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000060500003900000006040000290000000408000039000006930000813d000000000002041b0000000102200039000000000012004b0000068f0000413d0000001f0090008c000000200a000039000007260000a13d000400000009001d000000000080043f0000000001000414000002e50010009c000002e501008041000000c001100210000002ed011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000200200008a0000000402200180000000000101043b000008200000c13d000000200300003900000005060000290000082d0000013d0000000801000039000000000101041a000000000013004b000007300000a13d0000032c01000041000000800010043f0000002001000039000000840010043f0000001c01000039000000a40010043f0000032e01000041000000c40010043f0000032f0100004100000b9200010430000002e50030009c000002e503008041000000c0013002100000004003500210000000000131019f00000337011001c70b900b860000040f000000070b0000290000006003100270000002e503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000006cd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000006c90000c13d000000000006004b000006da0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000007580000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000620000413d000005f70000013d00000000010004110b900b0e0000040f000000060300002900000007010000290000000b01100039000000000201041a000000000032001a0000095f0000413d0000000002320019000000000021041b0000000a01000039000000000201041a000000000032001a0000095f0000413d0000000002320019000000000021041b0000000001000411000000000010043f0000010e01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000201041a0000000603000029000000000032001a0000095f0000413d0000000002320019000000000021041b000000400100043d0000004002100039000000000032043500000020021000390000000703000029000000000032043500000000020004110000000000210435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f00000339011001c70000800d0200003900000001030000390000033a04000041000008130000013d000000000003004b000007ea0000c13d000000400100043d00000044021000390000035103000041000000000032043500000024021000390000001f03000039000005ad0000013d000000000009004b00000000010000190000072a0000613d00000000010404330000000302900210000003580220027f0000035802200167000000000221016f00000001019002100000083e0000013d000600000004001d000700000003001d0000000001000411000000000010043f0000010c01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000101041a0000000702000029000000000021001a0000095f0000413d0000000004210019000000400600043d000000440160003900000024026000390000000403600039000003280040009c000008590000413d0000032c04000041000000000046043500000020040000390000000000430435000000060300003900000000003204350000032d020000410000000000210435000002e50060009c000002e50600804100000040016002100000032a011001c700000b92000104300000001f0530018f000002e706300198000000400200043d0000000004620019000007630000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000075f0000c13d000000000005004b000007700000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000002e50020009c000002e5020080410000004002200210000000000112019f00000b92000104300000000002000019000000000400001900000005052002100000000005350019000000000558034f000000000505043b000000ff0050008c000000620000213d000000800600043d000000000062004b0000086e0000813d0000000b05500039000000000505041a000000050440021000001fe00440018f000000a0044000390000000000540435000000ff0020008c0000095f0000613d0000000104200039000000ff0240018f000000000012004b000007780000413d000003330000013d00040000000a001d0000000003720019000600000007001d000000000007004b000007990000613d000000000401034f0000000005020019000000004604043c0000000005650436000000000035004b000007950000c13d000500000009001d000000000009004b000007a80000613d000000060110036000000005040000290000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000070300002900000000013200190000010d040000390000000000410435000002e50020009c000002e50200804100000040012002100000002002300039000002e50020009c000300000002001d000002e5020080410000006002200210000000000121019f0000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f0000034b011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000301034f000000400100043d000000000203043b000000000202041a000002e800200198000008740000c13d000000060210002900000004030000290000000103300367000000060000006b000007d00000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000007cc0000c13d000000050000006b000007de0000613d000000060330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000032043500000007021000290000010d03000039000000000032043500000003020000290b900b710000040f000000000201041a000002f1022001970000000003000411000000000232019f000000000021041b000000000100001900000b910001042e0000000201000039000000000201041a0000000604000029000000000042001a0000095f0000413d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000201041a0000000603000029000000000032001a00000007060000290000095f0000413d0000000002320019000000000021041b000000400100043d0000000000310435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f000002ed011001c70000800d020000390000000303000039000003420400004100000000050000190b900b860000040f0000000100200190000000620000613d000000000100001900000b910001042e000000070100002900000000020004110b9009f20000040f0000000701000029000000060200002900000005030000290b900a490000040f000006040000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000008260000c13d0000000405000029000000000052004b000008380000813d0000000302500210000000f80220018f000003580220027f000003580220016700000000036300190000000003030433000000000223016f000000000021041b00000001010000390000000102500210000000070600002900000006050000390000000408000039000000200a000039000000000112019f000000000018041b0000000501000039000000000201041a0000000703000039000000000003041b000002ee030000410000000804000039000000000034041b0000000903000039000000000003041b00000000030004110000000803300210000002ef03300197000002f002200197000000000232019f00000064022001bf000000000021041b000002e801600197000000000205041a000002f102200197000000000112019f000000000015041b0000010000a004430000012000000443000002f20100004100000b910001042e0000000604000039000000000404041a0000032905000041000500000006001d000000000056043500000000050004110000000000530435000000000300041000000000003204350000000602000029000000640220011a00000000002104350000000001000414000002e802400197000000040020008c0000087a0000c13d0000000003000031000000200030008c00000020040000390000000004034019000008a30000013d0000034f01000041000000000010043f0000003201000039000000040010043f000003500100004100000b920001043000000044021000390000034c03000041000000000032043500000024021000390000001603000039000005ad0000013d0000000503000029000002e50030009c000002e5030080410000004003300210000002e50010009c000002e501008041000000c001100210000000000131019f0000032a011001c70b900b860000040f0000006003100270000002e503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000008930000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b0000088f0000c13d000000000006004b000008a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000009340000613d0000001f01400039000000600210018f0000000501200029000000000021004b00000000020000390000000102004039000002ec0010009c000000bb0000213d0000000100200190000000bb0000c13d000000400010043f000000200030008c000000620000413d00000005020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000620000c13d000000000002004b000009400000c13d00000044021000390000032b03000041000000000032043500000024021000390000001403000039000005ad0000013d0000000201000039000000000201041a000000070020002a0000095f0000413d0000000702200029000000000021041b0000000101000029000000000010043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000201041a000000070020002a0000095f0000413d00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f000002ed011001c70000800d0200003900000003030000390000034204000041000000000500001900000001060000290b900b860000040f0000000100200190000000620000613d000000400100043d00000080021000390000000603000029000000000032043500000080020000390000000002210436000000a003100039000000020430002900000005050000290000000105500367000000020000006b000008fd0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000008f90000c13d0000000406000029000002e806600197000000030000006b0000090d0000613d000000020550036000000003070000290000000307700210000000000804043300000000087801cf000000000878022f000000000505043b0000010007700089000000000575022f00000000057501cf000000000585019f000000000054043500000006050000290000000003530019000000000003043500000060031000390000000000630435000000400310003900000007040000290000000000430435000000010300002900000000003204350000001f0250003900000356022001970000006003200210000003430330009a000003440020009c0000034503008041000002e50010009c000002e5010080410000004001100210000000000131019f0000000002000414000002e50020009c000002e502008041000000c00220021000000000012100190000800d02000039000000010300003900000346040000410000071c0000013d0000032c01000041000000800010043f0000002001000039000000840010043f0000001e01000039000000a40010043f0000034901000041000000c40010043f0000032f0100004100000b92000104300000001f0530018f000002e706300198000000400200043d0000000004620019000007630000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000093b0000c13d000007630000013d0000000903000039000000000103041a0000000702000029000000000021001a0000095f0000413d0000000001210019000000000013041b0000000001000411000000000010043f0000010c01000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000620000613d000000000101043b000000000301041a0000000702000029000000000023001a0000095f0000413d0000000003230019000000000031041b0000000801000039000000000101041a000000000121004b0000096c0000813d0000034f01000041000000000010043f0000001101000039000000040010043f000003500100004100000b9200010430000000400100043d00000044021000390000032e03000041000000000032043500000024021000390000001c03000039000005ad0000013d0000000803000039000000000013041b00000000010004110b900ac40000040f000000000100001900000b910001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000009810000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000097a0000413d000000000321001900000000000304350000001f0220003900000356022001970000000001210019000000000001042d0000001f03100039000000000023004b00000000040000190000035a040040410000035a052001970000035a03300197000000000653013f000000000053004b00000000030000190000035a030020410000035a0060009c000000000304c019000000000003004b0000099f0000613d0000000103100367000000000303043b000002ec0030009c0000099f0000213d00000020011000390000000004310019000000000024004b0000099f0000213d0000000002030019000000000001042d000000000100001900000b92000104300000001f0220003900000356022001970000000001120019000000000021004b00000000020000390000000102004039000002ec0010009c000009ad0000213d0000000100200190000009ad0000c13d000000400010043f000000000001042d0000034f01000041000000000010043f0000004101000039000000040010043f000003500100004100000b9200010430000000000001004b000009b60000613d000000000001042d000000400100043d0000006402100039000003530300004100000000003204350000004402100039000003540300004100000000003204350000002402100039000000230300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000033f011001c700000b9200010430000000000001004b000009cd0000613d000000000001042d000000400100043d0000004402100039000003480300004100000000003204350000002402100039000000170300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000032a011001c700000b9200010430000000000001004b000009e10000613d000000000001042d000000400100043d00000044021000390000032b0300004100000000003204350000002402100039000000140300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000032a011001c700000b92000104300003000000000002000002e80110019800000a2b0000613d000200000003001d000302e80020019c00000a350000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000100200190000000030300002900000a290000613d000000000101043b000000000030043f000000200010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f0000000306000029000000010020019000000a290000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f000002ed011001c70000800d0200003900000003030000390000035b0400004100000001050000290b900b860000040f000000010020019000000a290000613d000000000001042d000000000100001900000b9200010430000000400100043d00000064021000390000035e03000041000000000032043500000044021000390000035f0300004100000000003204350000002402100039000000240300003900000a3e0000013d000000400100043d00000064021000390000035c03000041000000000032043500000044021000390000035d0300004100000000003204350000002402100039000000220300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000033f011001c700000b92000104300004000000000002000002e80110019800000a960000613d000400000003001d000202e80020019c00000aa00000613d000300000001001d000000000010043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f000000010020019000000a940000613d000000000101043b000000000101041a000100040010007400000aaa0000413d0000000301000029000000000010043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f000000010020019000000a940000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f000000010020019000000a940000613d000000000101043b000000000201041a0000000403000029000000000032001a00000abe0000413d0000000002320019000000000021041b000000400100043d0000000000310435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f000002ed011001c70000800d0200003900000003030000390000034204000041000000030500002900000002060000290b900b860000040f000000010020019000000a940000613d000000000001042d000000000100001900000b9200010430000000400100043d0000006402100039000003640300004100000000003204350000004402100039000003650300004100000000003204350000002402100039000000250300003900000ab30000013d000000400100043d0000006402100039000003620300004100000000003204350000004402100039000003630300004100000000003204350000002402100039000000230300003900000ab30000013d000000400100043d0000006402100039000003600300004100000000003204350000004402100039000003610300004100000000003204350000002402100039000000260300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000033f011001c700000b92000104300000034f01000041000000000010043f0000001101000039000000040010043f000003500100004100000b92000104300002000000000002000002e80310019800000af70000613d0000000201000039000000000401041a000000000024001a00000b080000413d000100000002001d0000000002240019000000000021041b000200000003001d000000000030043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f000000010020019000000af50000613d000000000101043b000000000201041a0000000103000029000000000032001a000000020600002900000b080000413d0000000002320019000000000021041b000000400100043d0000000000310435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f000002ed011001c70000800d020000390000000303000039000003420400004100000000050000190b900b860000040f000000010020019000000af50000613d000000000001042d000000000100001900000b9200010430000000400100043d00000044021000390000035103000041000000000032043500000024021000390000001f0300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000032a011001c700000b92000104300000034f01000041000000000010043f0000001101000039000000040010043f000003500100004100000b92000104300003000000000002000300000002001d000002e80110019800000b4d0000613d000200000001001d000000000010043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f000000010020019000000b4b0000613d000000000101043b000000000101041a000100030010007400000b570000413d0000000201000029000000000010043f000000200000043f0000000001000414000002e50010009c000002e501008041000000c00110021000000327011001c700008010020000390b900b8b0000040f000000010020019000000b4b0000613d000000000101043b0000000102000029000000000021041b0000000201000039000000000201041a0000000303000029000000000232004b00000b6b0000413d000000000021041b000000400100043d0000000000310435000002e50010009c000002e50100804100000040011002100000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f000002ed011001c70000800d0200003900000003030000390000034204000041000000020500002900000000060000190b900b860000040f000000010020019000000b4b0000613d000000000001042d000000000100001900000b9200010430000000400100043d0000006402100039000003680300004100000000003204350000004402100039000003690300004100000000003204350000002402100039000000210300003900000b600000013d000000400100043d0000006402100039000003660300004100000000003204350000004402100039000003670300004100000000003204350000002402100039000000220300003900000000003204350000032c020000410000000000210435000000040210003900000020030000390000000000320435000002e50010009c000002e50100804100000040011002100000033f011001c700000b92000104300000034f01000041000000000010043f0000001101000039000000040010043f000003500100004100000b9200010430000002e50010009c000002e5010080410000004001100210000002e50020009c000002e5020080410000006002200210000000000112019f0000000002000414000002e50020009c000002e502008041000000c002200210000000000112019f0000034b011001c700008010020000390b900b8b0000040f000000010020019000000b840000613d000000000101043b000000000001042d000000000100001900000b920001043000000b89002104210000000102000039000000000001042d0000000002000019000000000001042d00000b8e002104230000000102000039000000000001042d0000000002000019000000000001042d00000b900000043200000b910001042e00000b9200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf50757267656400000000000000000000000000000000000000000000000000005055524745440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff020000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000009028836300000000000000000000000000000000000000000000000000000000b11ce2da00000000000000000000000000000000000000000000000000000000d8fc063c00000000000000000000000000000000000000000000000000000000e6ab143300000000000000000000000000000000000000000000000000000000e6ab143400000000000000000000000000000000000000000000000000000000ee19625a00000000000000000000000000000000000000000000000000000000ff3a10ab00000000000000000000000000000000000000000000000000000000d8fc063d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000cba3088000000000000000000000000000000000000000000000000000000000cba3088100000000000000000000000000000000000000000000000000000000d3fd217100000000000000000000000000000000000000000000000000000000b11ce2db00000000000000000000000000000000000000000000000000000000b138d500000000000000000000000000000000000000000000000000000000009c8550eb00000000000000000000000000000000000000000000000000000000a68574d200000000000000000000000000000000000000000000000000000000a68574d300000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000ab99b82f000000000000000000000000000000000000000000000000000000009c8550ec00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000962ccd9900000000000000000000000000000000000000000000000000000000962ccd9a000000000000000000000000000000000000000000000000000000009b800dd700000000000000000000000000000000000000000000000000000000902883640000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000037b92eb200000000000000000000000000000000000000000000000000000000672434810000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000076cdb03b0000000000000000000000000000000000000000000000000000000083a634610000000000000000000000000000000000000000000000000000000067243482000000000000000000000000000000000000000000000000000000006c797bfd000000000000000000000000000000000000000000000000000000003e0183d0000000000000000000000000000000000000000000000000000000003e0183d10000000000000000000000000000000000000000000000000000000059384b330000000000000000000000000000000000000000000000000000000037b92eb300000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000029224e350000000000000000000000000000000000000000000000000000000029224e3600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000a9c4d4900000000000000000000000000000000000000000000000000000000048c14f10000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000000000000000000000000f42400200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000003b9aca0123b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000055534443207472616e73666572206661696c656400000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000316b206d617800000000000000000000000000000000000000000000000000004e6f7420656e6f75676820636f696e7320696e207468652062616e6b00000000000000000000000000000000000000000000006400000080000000000000000045786365656473206d6178696d756d2070726573616c6520616d6f756e740000416d6f756e74206d7573742062652067726561746572207468616e203520636f696e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000800000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000004c4b41020000000000000000000000000000000000006000000000000000000000000046cdbaefcba5b10c473b1f147c298014bdc33290f2cf4ee881784e0d06084f67496e76616c696420616d6f756e740000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffdffdffffffffffffffffffffffffffffffffffffe0000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effdffffffffffffffffffffffffffffffffffff6000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff6002000000000000000000000000000000ffffffff00000000000000000000000049bfc18cbb4300a975685b5eaa234b87259d2ed6827ba063ebefb0b21757bc848a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b43616c6c6572206973206e6f7420746865206f776e6572000000000000000000417272617973206d757374206265207468652073616d65206c656e6774680000000000000000000000000000000000000000000000000000ffffffffffffff7f0200000000000000000000000000000000000000000000000000000000000000526566657272616c20636f64652069732074616b656e00000000000000000000496e76616c696420726566657272616c20636f6465206c656e677468000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe04e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000616374000000000000000000000000000000000000000000000000000000000043616c6c6572206973206e6f7420612050757267652047616d6520636f6e7472c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdf80000000000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573dce22b12d1a507af5c96424b23e3f04c1dc44a4f8b493dc2e9fb10f913b49a22
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007ff6ae4fb2c2b7fbf49b670143dff116ca867411
-----Decoded View---------------
Arg [0] : _usdcTokenAddress (address): 0x7ff6AE4fb2C2b7fBF49B670143Dff116ca867411
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007ff6ae4fb2c2b7fbf49b670143dff116ca867411
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.