Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 51 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Finalize | 4691598 | 3005 days ago | IN | 0 ETH | 0.05312482 | ||||
| Buy | 4691443 | 3005 days ago | IN | 0.01 ETH | 0.00745766 | ||||
| Buy | 4691443 | 3005 days ago | IN | 0.008 ETH | 0.0074571 | ||||
| Buy | 4691443 | 3005 days ago | IN | 0.006 ETH | 0.00745654 | ||||
| Buy | 4691443 | 3005 days ago | IN | 0.0003 ETH | 0.01104831 | ||||
| Buy | 4691441 | 3005 days ago | IN | 0.0001 ETH | 0.01104082 | ||||
| Buy | 4691266 | 3005 days ago | IN | 0.01 ETH | 0.01087058 | ||||
| Buy | 4691265 | 3005 days ago | IN | 0.008 ETH | 0.01087002 | ||||
| Buy | 4691261 | 3005 days ago | IN | 0.006 ETH | 0.0072702 | ||||
| Buy | 4691261 | 3005 days ago | IN | 0.0003 ETH | 0.01086197 | ||||
| Buy | 4691258 | 3005 days ago | IN | 0.0001 ETH | 0.01085448 | ||||
| Buy | 4691096 | 3005 days ago | IN | 0.01 ETH | 0.01068424 | ||||
| Buy | 4691095 | 3005 days ago | IN | 0.008 ETH | 0.01068368 | ||||
| Buy | 4691093 | 3005 days ago | IN | 0.006 ETH | 0.01068312 | ||||
| Buy | 4691091 | 3005 days ago | IN | 0.0003 ETH | 0.01067563 | ||||
| Buy | 4691088 | 3005 days ago | IN | 0.0001 ETH | 0.01066814 | ||||
| Buy | 4690920 | 3005 days ago | IN | 0.01 ETH | 0.00689864 | ||||
| Buy | 4690920 | 3005 days ago | IN | 0.008 ETH | 0.01049734 | ||||
| Buy | 4690918 | 3005 days ago | IN | 0.006 ETH | 0.01049678 | ||||
| Buy | 4690916 | 3005 days ago | IN | 0.0003 ETH | 0.01048929 | ||||
| Buy | 4690913 | 3005 days ago | IN | 0.0001 ETH | 0.0104818 | ||||
| Buy | 4690741 | 3005 days ago | IN | 0.01 ETH | 0.01031156 | ||||
| Buy | 4690739 | 3005 days ago | IN | 0.008 ETH | 0.010311 | ||||
| Buy | 4690738 | 3005 days ago | IN | 0.006 ETH | 0.01031044 | ||||
| Buy | 4690736 | 3005 days ago | IN | 0.0003 ETH | 0.01030295 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 4691443 | 3005 days ago | 0.01 ETH | ||||
| Transfer | 4691443 | 3005 days ago | 0.008 ETH | ||||
| Transfer | 4691443 | 3005 days ago | 0.006 ETH | ||||
| Transfer | 4691443 | 3005 days ago | 0.0003 ETH | ||||
| Transfer | 4691441 | 3005 days ago | 0.0001 ETH | ||||
| Transfer | 4691266 | 3005 days ago | 0.01 ETH | ||||
| Transfer | 4691265 | 3005 days ago | 0.008 ETH | ||||
| Transfer | 4691261 | 3005 days ago | 0.006 ETH | ||||
| Transfer | 4691261 | 3005 days ago | 0.0003 ETH | ||||
| Transfer | 4691258 | 3005 days ago | 0.0001 ETH | ||||
| Transfer | 4691096 | 3005 days ago | 0.01 ETH | ||||
| Transfer | 4691095 | 3005 days ago | 0.008 ETH | ||||
| Transfer | 4691093 | 3005 days ago | 0.006 ETH | ||||
| Transfer | 4691091 | 3005 days ago | 0.0003 ETH | ||||
| Transfer | 4691088 | 3005 days ago | 0.0001 ETH | ||||
| Transfer | 4690920 | 3005 days ago | 0.01 ETH | ||||
| Transfer | 4690920 | 3005 days ago | 0.008 ETH | ||||
| Transfer | 4690918 | 3005 days ago | 0.006 ETH | ||||
| Transfer | 4690916 | 3005 days ago | 0.0003 ETH | ||||
| Transfer | 4690913 | 3005 days ago | 0.0001 ETH | ||||
| Transfer | 4690741 | 3005 days ago | 0.01 ETH | ||||
| Transfer | 4690739 | 3005 days ago | 0.008 ETH | ||||
| Transfer | 4690738 | 3005 days ago | 0.006 ETH | ||||
| Transfer | 4690736 | 3005 days ago | 0.0003 ETH | ||||
| Transfer | 4690734 | 3005 days ago | 0.0001 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ATCCrowdSale
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-12-08
*/
pragma solidity ^0.4.18;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
contract SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal constant returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
function max64(uint64 a, uint64 b) internal constant returns (uint64) {
return a >= b ? a : b;
}
function min64(uint64 a, uint64 b) internal constant returns (uint64) {
return a < b ? a : b;
}
function max256(uint256 a, uint256 b) internal constant returns (uint256) {
return a >= b ? a : b;
}
function min256(uint256 a, uint256 b) internal constant returns (uint256) {
return a < b ? a : b;
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) public view returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure.
* To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
assert(token.transfer(to, value));
}
function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
assert(token.transferFrom(from, to, value));
}
function safeApprove(ERC20 token, address spender, uint256 value) internal {
assert(token.approve(spender, value));
}
}
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) onlyOwner {
require(newOwner != address(0));
owner = newOwner;
}
}
/**
* @title KYC
* @dev KYC contract handles the white list for ASTCrowdsale contract
* Only accounts registered in KYC contract can buy AST token.
* Admins can register account, and the reason why
*/
contract KYC is Ownable {
// check the address is registered for token sale
mapping (address => bool) public registeredAddress;
// check the address is admin of kyc contract
mapping (address => bool) public admin;
event Registered(address indexed _addr);
event Unregistered(address indexed _addr);
event NewAdmin(address indexed _addr);
event ClaimedTokens(address _token, address owner, uint256 balance);
/**
* @dev check whether the address is registered for token sale or not.
* @param _addr address
*/
modifier onlyRegistered(address _addr) {
require(registeredAddress[_addr]);
_;
}
/**
* @dev check whether the msg.sender is admin or not
*/
modifier onlyAdmin() {
require(admin[msg.sender]);
_;
}
function KYC() {
admin[msg.sender] = true;
}
/**
* @dev set new admin as admin of KYC contract
* @param _addr address The address to set as admin of KYC contract
*/
function setAdmin(address _addr)
public
onlyOwner
{
require(_addr != address(0) && admin[_addr] == false);
admin[_addr] = true;
NewAdmin(_addr);
}
/**
* @dev register the address for token sale
* @param _addr address The address to register for token sale
*/
function register(address _addr)
public
onlyAdmin
{
require(_addr != address(0) && registeredAddress[_addr] == false);
registeredAddress[_addr] = true;
Registered(_addr);
}
/**
* @dev register the addresses for token sale
* @param _addrs address[] The addresses to register for token sale
*/
function registerByList(address[] _addrs)
public
onlyAdmin
{
for(uint256 i = 0; i < _addrs.length; i++) {
require(_addrs[i] != address(0) && registeredAddress[_addrs[i]] == false);
registeredAddress[_addrs[i]] = true;
Registered(_addrs[i]);
}
}
/**
* @dev unregister the registered address
* @param _addr address The address to unregister for token sale
*/
function unregister(address _addr)
public
onlyAdmin
onlyRegistered(_addr)
{
registeredAddress[_addr] = false;
Unregistered(_addr);
}
/**
* @dev unregister the registered addresses
* @param _addrs address[] The addresses to unregister for token sale
*/
function unregisterByList(address[] _addrs)
public
onlyAdmin
{
for(uint256 i = 0; i < _addrs.length; i++) {
require(registeredAddress[_addrs[i]]);
registeredAddress[_addrs[i]] = false;
Unregistered(_addrs[i]);
}
}
function claimTokens(address _token) public onlyOwner {
if (_token == 0x0) {
owner.transfer(this.balance);
return;
}
ERC20Basic token = ERC20Basic(_token);
uint256 balance = token.balanceOf(this);
token.transfer(owner, balance);
ClaimedTokens(_token, owner, balance);
}
}
/*
Copyright 2016, Jordi Baylina
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/// @title MiniMeToken Contract
/// @author Jordi Baylina
/// @dev This token contract's goal is to make it easy for anyone to clone this
/// token using the token distribution at a given block, this will allow DAO's
/// and DApps to upgrade their features in a decentralized manner without
/// affecting the original token
/// @dev It is ERC20 compliant, but still needs to under go further testing.
contract Controlled {
/// @notice The address of the controller is the only address that can call
/// a function with this modifier
modifier onlyController { require(msg.sender == controller); _; }
address public controller;
function Controlled() public { controller = msg.sender;}
/// @notice Changes the controller of the contract
/// @param _newController The new controller of the contract
function changeController(address _newController) public onlyController {
controller = _newController;
}
}
/// @dev The token controller contract must implement these functions
contract TokenController {
/// @notice Called when `_owner` sends ether to the MiniMe Token contract
/// @param _owner The address that sent the ether to create tokens
/// @return True if the ether is accepted, false if it throws
function proxyPayment(address _owner) public payable returns(bool);
/// @notice Notifies the controller about a token transfer allowing the
/// controller to react if desired
/// @param _from The origin of the transfer
/// @param _to The destination of the transfer
/// @param _amount The amount of the transfer
/// @return False if the controller does not authorize the transfer
function onTransfer(address _from, address _to, uint _amount) public returns(bool);
/// @notice Notifies the controller about an approval allowing the
/// controller to react if desired
/// @param _owner The address that calls `approve()`
/// @param _spender The spender in the `approve()` call
/// @param _amount The amount in the `approve()` call
/// @return False if the controller does not authorize the approval
function onApprove(address _owner, address _spender, uint _amount) public
returns(bool);
}
contract ApproveAndCallFallBack {
function receiveApproval(address from, uint256 _amount, address _token, bytes _data) public;
}
/// @dev The actual token contract, the default controller is the msg.sender
/// that deploys the contract, so usually this token will be deployed by a
/// token controller contract, which Giveth will call a "Campaign"
contract MiniMeToken is Controlled {
string public name; //The Token's name: e.g. DigixDAO Tokens
uint8 public decimals; //Number of decimals of the smallest unit
string public symbol; //An identifier: e.g. REP
string public version = 'MMT_0.2'; //An arbitrary versioning scheme
/// @dev `Checkpoint` is the structure that attaches a block number to a
/// given value, the block number attached is the one that last changed the
/// value
struct Checkpoint {
// `fromBlock` is the block number that the value was generated from
uint128 fromBlock;
// `value` is the amount of tokens at a specific block number
uint128 value;
}
// `parentToken` is the Token address that was cloned to produce this token;
// it will be 0x0 for a token that was not cloned
MiniMeToken public parentToken;
// `parentSnapShotBlock` is the block number from the Parent Token that was
// used to determine the initial distribution of the Clone Token
uint public parentSnapShotBlock;
// `creationBlock` is the block number that the Clone Token was created
uint public creationBlock;
// `balances` is the map that tracks the balance of each address, in this
// contract when the balance changes the block number that the change
// occurred is also included in the map
mapping (address => Checkpoint[]) balances;
// `allowed` tracks any extra transfer rights as in all ERC20 tokens
mapping (address => mapping (address => uint256)) allowed;
// Tracks the history of the `totalSupply` of the token
Checkpoint[] totalSupplyHistory;
// Flag that determines if the token is transferable or not.
bool public transfersEnabled;
// The factory used to create new clone tokens
MiniMeTokenFactory public tokenFactory;
////////////////
// Constructor
////////////////
/// @notice Constructor to create a MiniMeToken
/// @param _tokenFactory The address of the MiniMeTokenFactory contract that
/// will create the Clone token contracts, the token factory needs to be
/// deployed first
/// @param _parentToken Address of the parent token, set to 0x0 if it is a
/// new token
/// @param _parentSnapShotBlock Block of the parent token that will
/// determine the initial distribution of the clone token, set to 0 if it
/// is a new token
/// @param _tokenName Name of the new token
/// @param _decimalUnits Number of decimals of the new token
/// @param _tokenSymbol Token Symbol for the new token
/// @param _transfersEnabled If true, tokens will be able to be transferred
function MiniMeToken(
address _tokenFactory,
address _parentToken,
uint _parentSnapShotBlock,
string _tokenName,
uint8 _decimalUnits,
string _tokenSymbol,
bool _transfersEnabled
) public {
tokenFactory = MiniMeTokenFactory(_tokenFactory);
name = _tokenName; // Set the name
decimals = _decimalUnits; // Set the decimals
symbol = _tokenSymbol; // Set the symbol
parentToken = MiniMeToken(_parentToken);
parentSnapShotBlock = _parentSnapShotBlock;
transfersEnabled = _transfersEnabled;
creationBlock = block.number;
}
///////////////////
// ERC20 Methods
///////////////////
/// @notice Send `_amount` tokens to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _amount The amount of tokens to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _amount) public returns (bool success) {
require(transfersEnabled);
return doTransfer(msg.sender, _to, _amount);
}
/// @notice Send `_amount` tokens to `_to` from `_from` on the condition it
/// is approved by `_from`
/// @param _from The address holding the tokens being transferred
/// @param _to The address of the recipient
/// @param _amount The amount of tokens to be transferred
/// @return True if the transfer was successful
function transferFrom(address _from, address _to, uint256 _amount
) public returns (bool success) {
// The controller of this contract can move tokens around at will,
// this is important to recognize! Confirm that you trust the
// controller of this contract, which in most situations should be
// another open source smart contract or 0x0
if (msg.sender != controller) {
require(transfersEnabled);
// The standard ERC 20 transferFrom functionality
if (allowed[_from][msg.sender] < _amount) return false;
allowed[_from][msg.sender] -= _amount;
}
return doTransfer(_from, _to, _amount);
}
/// @dev This is the actual transfer function in the token contract, it can
/// only be called by other functions in this contract.
/// @param _from The address holding the tokens being transferred
/// @param _to The address of the recipient
/// @param _amount The amount of tokens to be transferred
/// @return True if the transfer was successful
function doTransfer(address _from, address _to, uint _amount
) internal returns(bool) {
if (_amount == 0) {
return true;
}
require(parentSnapShotBlock < block.number);
// Do not allow transfer to 0x0 or the token contract itself
require((_to != 0) && (_to != address(this)));
// If the amount being transfered is more than the balance of the
// account the transfer returns false
var previousBalanceFrom = balanceOfAt(_from, block.number);
if (previousBalanceFrom < _amount) {
return false;
}
// Alerts the token controller of the transfer
if (isContract(controller)) {
require(TokenController(controller).onTransfer(_from, _to, _amount));
}
// First update the balance array with the new value for the address
// sending the tokens
updateValueAtNow(balances[_from], previousBalanceFrom - _amount);
// Then update the balance array with the new value for the address
// receiving the tokens
var previousBalanceTo = balanceOfAt(_to, block.number);
require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
updateValueAtNow(balances[_to], previousBalanceTo + _amount);
// An event to make the transfer easy to find on the blockchain
Transfer(_from, _to, _amount);
return true;
}
/// @param _owner The address that's balance is being requested
/// @return The balance of `_owner` at the current block
function balanceOf(address _owner) public constant returns (uint256 balance) {
return balanceOfAt(_owner, block.number);
}
/// @notice `msg.sender` approves `_spender` to spend `_amount` tokens on
/// its behalf. This is a modified version of the ERC20 approve function
/// to be a little bit safer
/// @param _spender The address of the account able to transfer the tokens
/// @param _amount The amount of tokens to be approved for transfer
/// @return True if the approval was successful
function approve(address _spender, uint256 _amount) public returns (bool success) {
require(transfersEnabled);
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender,0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
require((_amount == 0) || (allowed[msg.sender][_spender] == 0));
// Alerts the token controller of the approve function call
if (isContract(controller)) {
require(TokenController(controller).onApprove(msg.sender, _spender, _amount));
}
allowed[msg.sender][_spender] = _amount;
Approval(msg.sender, _spender, _amount);
return true;
}
/// @dev This function makes it easy to read the `allowed[]` map
/// @param _owner The address of the account that owns the token
/// @param _spender The address of the account able to transfer the tokens
/// @return Amount of remaining tokens of _owner that _spender is allowed
/// to spend
function allowance(address _owner, address _spender
) public constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
/// @notice `msg.sender` approves `_spender` to send `_amount` tokens on
/// its behalf, and then a function is triggered in the contract that is
/// being approved, `_spender`. This allows users to use their tokens to
/// interact with contracts in one function call instead of two
/// @param _spender The address of the contract able to transfer the tokens
/// @param _amount The amount of tokens to be approved for transfer
/// @return True if the function call was successful
function approveAndCall(address _spender, uint256 _amount, bytes _extraData
) public returns (bool success) {
require(approve(_spender, _amount));
ApproveAndCallFallBack(_spender).receiveApproval(
msg.sender,
_amount,
this,
_extraData
);
return true;
}
/// @dev This function makes it easy to get the total number of tokens
/// @return The total number of tokens
function totalSupply() public constant returns (uint) {
return totalSupplyAt(block.number);
}
////////////////
// Query balance and totalSupply in History
////////////////
/// @dev Queries the balance of `_owner` at a specific `_blockNumber`
/// @param _owner The address from which the balance will be retrieved
/// @param _blockNumber The block number when the balance is queried
/// @return The balance at `_blockNumber`
function balanceOfAt(address _owner, uint _blockNumber) public constant
returns (uint) {
// These next few lines are used when the balance of the token is
// requested before a check point was ever created for this token, it
// requires that the `parentToken.balanceOfAt` be queried at the
// genesis block for that token as this contains initial balance of
// this token
if ((balances[_owner].length == 0)
|| (balances[_owner][0].fromBlock > _blockNumber)) {
if (address(parentToken) != 0) {
return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock));
} else {
// Has no parent
return 0;
}
// This will return the expected balance during normal situations
} else {
return getValueAt(balances[_owner], _blockNumber);
}
}
/// @notice Total amount of tokens at a specific `_blockNumber`.
/// @param _blockNumber The block number when the totalSupply is queried
/// @return The total amount of tokens at `_blockNumber`
function totalSupplyAt(uint _blockNumber) public constant returns(uint) {
// These next few lines are used when the totalSupply of the token is
// requested before a check point was ever created for this token, it
// requires that the `parentToken.totalSupplyAt` be queried at the
// genesis block for this token as that contains totalSupply of this
// token at this block number.
if ((totalSupplyHistory.length == 0)
|| (totalSupplyHistory[0].fromBlock > _blockNumber)) {
if (address(parentToken) != 0) {
return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock));
} else {
return 0;
}
// This will return the expected totalSupply during normal situations
} else {
return getValueAt(totalSupplyHistory, _blockNumber);
}
}
////////////////
// Clone Token Method
////////////////
/// @notice Creates a new clone token with the initial distribution being
/// this token at `_snapshotBlock`
/// @param _cloneTokenName Name of the clone token
/// @param _cloneDecimalUnits Number of decimals of the smallest unit
/// @param _cloneTokenSymbol Symbol of the clone token
/// @param _snapshotBlock Block when the distribution of the parent token is
/// copied to set the initial distribution of the new clone token;
/// if the block is zero than the actual block, the current block is used
/// @param _transfersEnabled True if transfers are allowed in the clone
/// @return The address of the new MiniMeToken Contract
function createCloneToken(
string _cloneTokenName,
uint8 _cloneDecimalUnits,
string _cloneTokenSymbol,
uint _snapshotBlock,
bool _transfersEnabled
) public returns(address) {
if (_snapshotBlock == 0) _snapshotBlock = block.number;
MiniMeToken cloneToken = tokenFactory.createCloneToken(
this,
_snapshotBlock,
_cloneTokenName,
_cloneDecimalUnits,
_cloneTokenSymbol,
_transfersEnabled
);
cloneToken.changeController(msg.sender);
// An event to make the token easy to find on the blockchain
NewCloneToken(address(cloneToken), _snapshotBlock);
return address(cloneToken);
}
////////////////
// Generate and destroy tokens
////////////////
/// @notice Generates `_amount` tokens that are assigned to `_owner`
/// @param _owner The address that will be assigned the new tokens
/// @param _amount The quantity of tokens generated
/// @return True if the tokens are generated correctly
function generateTokens(address _owner, uint _amount
) public onlyController returns (bool) {
uint curTotalSupply = totalSupply();
require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow
uint previousBalanceTo = balanceOf(_owner);
require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount);
updateValueAtNow(balances[_owner], previousBalanceTo + _amount);
Transfer(0, _owner, _amount);
return true;
}
/// @notice Burns `_amount` tokens from `_owner`
/// @param _owner The address that will lose the tokens
/// @param _amount The quantity of tokens to burn
/// @return True if the tokens are burned correctly
function destroyTokens(address _owner, uint _amount
) onlyController public returns (bool) {
uint curTotalSupply = totalSupply();
require(curTotalSupply >= _amount);
uint previousBalanceFrom = balanceOf(_owner);
require(previousBalanceFrom >= _amount);
updateValueAtNow(totalSupplyHistory, curTotalSupply - _amount);
updateValueAtNow(balances[_owner], previousBalanceFrom - _amount);
Transfer(_owner, 0, _amount);
return true;
}
////////////////
// Enable tokens transfers
////////////////
/// @notice Enables token holders to transfer their tokens freely if true
/// @param _transfersEnabled True if transfers are allowed in the clone
function enableTransfers(bool _transfersEnabled) public onlyController {
transfersEnabled = _transfersEnabled;
}
////////////////
// Internal helper functions to query and set a value in a snapshot array
////////////////
/// @dev `getValueAt` retrieves the number of tokens at a given block number
/// @param checkpoints The history of values being queried
/// @param _block The block number to retrieve the value at
/// @return The number of tokens being queried
function getValueAt(Checkpoint[] storage checkpoints, uint _block
) constant internal returns (uint) {
if (checkpoints.length == 0) return 0;
// Shortcut for the actual value
if (_block >= checkpoints[checkpoints.length-1].fromBlock)
return checkpoints[checkpoints.length-1].value;
if (_block < checkpoints[0].fromBlock) return 0;
// Binary search of the value in the array
uint min = 0;
uint max = checkpoints.length-1;
while (max > min) {
uint mid = (max + min + 1)/ 2;
if (checkpoints[mid].fromBlock<=_block) {
min = mid;
} else {
max = mid-1;
}
}
return checkpoints[min].value;
}
/// @dev `updateValueAtNow` used to update the `balances` map and the
/// `totalSupplyHistory`
/// @param checkpoints The history of data being updated
/// @param _value The new number of tokens
function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value
) internal {
if ((checkpoints.length == 0)
|| (checkpoints[checkpoints.length -1].fromBlock < block.number)) {
Checkpoint storage newCheckPoint = checkpoints[ checkpoints.length++ ];
newCheckPoint.fromBlock = uint128(block.number);
newCheckPoint.value = uint128(_value);
} else {
Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length-1];
oldCheckPoint.value = uint128(_value);
}
}
/// @dev Internal function to determine if an address is a contract
/// @param _addr The address being queried
/// @return True if `_addr` is a contract
function isContract(address _addr) constant internal returns(bool) {
uint size;
if (_addr == 0) return false;
assembly {
size := extcodesize(_addr)
}
return size>0;
}
/// @dev Helper function to return a min betwen the two uints
function min(uint a, uint b) pure internal returns (uint) {
return a < b ? a : b;
}
/// @notice The fallback function: If the contract's controller has not been
/// set to 0, then the `proxyPayment` method is called which relays the
/// ether and creates tokens as described in the token controller contract
function () public payable {
require(isContract(controller));
require(TokenController(controller).proxyPayment.value(msg.value)(msg.sender));
}
//////////
// Safety Methods
//////////
/// @notice This method can be used by the controller to extract mistakenly
/// sent tokens to this contract.
/// @param _token The address of the token contract that you want to recover
/// set to 0 in case you want to extract ether.
function claimTokens(address _token) public onlyController {
if (_token == 0x0) {
controller.transfer(this.balance);
return;
}
MiniMeToken token = MiniMeToken(_token);
uint balance = token.balanceOf(this);
token.transfer(controller, balance);
ClaimedTokens(_token, controller, balance);
}
////////////////
// Events
////////////////
event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount);
event Transfer(address indexed _from, address indexed _to, uint256 _amount);
event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock);
event Approval(
address indexed _owner,
address indexed _spender,
uint256 _amount
);
}
////////////////
// MiniMeTokenFactory
////////////////
/// @dev This contract is used to generate clone contracts from a contract.
/// In solidity this is the way to create a contract from a contract of the
/// same class
contract MiniMeTokenFactory {
/// @notice Update the DApp by creating a new token with new functionalities
/// the msg.sender becomes the controller of this clone token
/// @param _parentToken Address of the token being cloned
/// @param _snapshotBlock Block of the parent token that will
/// determine the initial distribution of the clone token
/// @param _tokenName Name of the new token
/// @param _decimalUnits Number of decimals of the new token
/// @param _tokenSymbol Token Symbol for the new token
/// @param _transfersEnabled If true, tokens will be able to be transferred
/// @return The address of the new token contract
function createCloneToken(
address _parentToken,
uint _snapshotBlock,
string _tokenName,
uint8 _decimalUnits,
string _tokenSymbol,
bool _transfersEnabled
) public returns (MiniMeToken) {
MiniMeToken newToken = new MiniMeToken(
this,
_parentToken,
_snapshotBlock,
_tokenName,
_decimalUnits,
_tokenSymbol,
_transfersEnabled
);
newToken.changeController(msg.sender);
return newToken;
}
}
contract ATC is MiniMeToken {
mapping (address => bool) public blacklisted;
bool public generateFinished;
// @dev ATC constructor just parametrizes the MiniMeToken constructor
function ATC(address _tokenFactory)
MiniMeToken(
_tokenFactory,
0x0, // no parent token
0, // no snapshot block number from parent
"ATCon Token", // Token name
18, // Decimals
"ATC", // Symbol
false // Enable transfers
) {}
function generateTokens(address _owner, uint _amount
) public onlyController returns (bool) {
require(generateFinished == false);
//check msg.sender (controller ??)
return super.generateTokens(_owner, _amount);
}
function doTransfer(address _from, address _to, uint _amount
) internal returns(bool) {
require(blacklisted[_from] == false);
return super.doTransfer(_from, _to, _amount);
}
function finishGenerating() public onlyController returns (bool success) {
generateFinished = true;
return true;
}
function blacklistAccount(address tokenOwner) public onlyController returns (bool success) {
blacklisted[tokenOwner] = true;
return true;
}
function unBlacklistAccount(address tokenOwner) public onlyController returns (bool success) {
blacklisted[tokenOwner] = false;
return true;
}
}
/**
* @title RefundVault
* @dev This contract is used for storing funds while a crowdsale
* is in progress. Supports refunding the money if crowdsale fails,
* and forwarding it if crowdsale is successful.
*/
contract RefundVault is Ownable, SafeMath{
enum State { Active, Refunding, Closed }
mapping (address => uint256) public deposited;
mapping (address => uint256) public refunded;
State public state;
address[] public reserveWallet;
event Closed();
event RefundsEnabled();
event Refunded(address indexed beneficiary, uint256 weiAmount);
/**
* @dev This constructor sets the addresses of
* 10 reserve wallets.
* and forwarding it if crowdsale is successful.
* @param _reserveWallet address[5] The addresses of reserve wallet.
*/
function RefundVault(address[] _reserveWallet) {
state = State.Active;
reserveWallet = _reserveWallet;
}
/**
* @dev This function is called when user buy tokens. Only RefundVault
* contract stores the Ether user sent which forwarded from crowdsale
* contract.
* @param investor address The address who buy the token from crowdsale.
*/
function deposit(address investor) onlyOwner payable {
require(state == State.Active);
deposited[investor] = add(deposited[investor], msg.value);
}
event Transferred(address _to, uint _value);
/**
* @dev This function is called when crowdsale is successfully finalized.
*/
function close() onlyOwner {
require(state == State.Active);
state = State.Closed;
uint256 balance = this.balance;
uint256 reserveAmountForEach = div(balance, reserveWallet.length);
for(uint8 i = 0; i < reserveWallet.length; i++){
reserveWallet[i].transfer(reserveAmountForEach);
Transferred(reserveWallet[i], reserveAmountForEach);
}
Closed();
}
/**
* @dev This function is called when crowdsale is unsuccessfully finalized
* and refund is required.
*/
function enableRefunds() onlyOwner {
require(state == State.Active);
state = State.Refunding;
RefundsEnabled();
}
/**
* @dev This function allows for user to refund Ether.
*/
function refund(address investor) returns (bool) {
require(state == State.Refunding);
if (refunded[investor] > 0) {
return false;
}
uint256 depositedValue = deposited[investor];
deposited[investor] = 0;
refunded[investor] = depositedValue;
investor.transfer(depositedValue);
Refunded(investor, depositedValue);
return true;
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev modifier to allow actions only when the contract IS paused
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev modifier to allow actions only when the contract IS NOT paused
*/
modifier whenPaused() {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused {
paused = true;
Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused {
paused = false;
Unpause();
}
}
contract ATCCrowdSale is Ownable, SafeMath, Pausable {
KYC public kyc;
ATC public token;
RefundVault public vault;
address public presale;
address public bountyAddress; //5% for bounty
address public partnersAddress; //15% for community groups & partners
address public ATCReserveLocker; //15% with 2 years lock
address public teamLocker; // 15% with 2 years vesting
struct Period {
uint256 startTime;
uint256 endTime;
uint256 bonus; // used to calculate rate with bonus. ragne 0 ~ 15 (0% ~ 15%)
}
uint256 public baseRate; // 1 ETH = 1500 ATC
uint256[] public additionalBonusAmounts;
Period[] public periods;
uint8 constant public MAX_PERIOD_COUNT = 8;
uint256 public weiRaised;
uint256 public maxEtherCap;
uint256 public minEtherCap;
mapping (address => uint256) public beneficiaryFunded;
address[] investorList;
mapping (address => bool) inInvestorList;
address public ATCController;
bool public isFinalized;
uint256 public refundCompleted;
bool public presaleFallBackCalled;
uint256 public finalizedTime;
bool public initialized;
event CrowdSaleTokenPurchase(address indexed _investor, address indexed _beneficiary, uint256 _toFund, uint256 _tokens);
event StartPeriod(uint256 _startTime, uint256 _endTime, uint256 _bonus);
event Finalized();
event PresaleFallBack(uint256 _presaleWeiRaised);
event PushInvestorList(address _investor);
event RefundAll(uint256 _numToRefund);
event ClaimedTokens(address _claimToken, address owner, uint256 balance);
event Initialize();
function initialize (
address _kyc,
address _token,
address _vault,
address _presale,
address _bountyAddress,
address _partnersAddress,
address _ATCReserveLocker,
address _teamLocker,
address _tokenController,
uint256 _maxEtherCap,
uint256 _minEtherCap,
uint256 _baseRate,
uint256[] _additionalBonusAmounts
) onlyOwner {
require(!initialized);
require(_kyc != 0x00 && _token != 0x00 && _vault != 0x00 && _presale != 0x00);
require(_bountyAddress != 0x00 && _partnersAddress != 0x00);
require(_ATCReserveLocker != 0x00 && _teamLocker != 0x00);
require(_tokenController != 0x00);
require(0 < _minEtherCap && _minEtherCap < _maxEtherCap);
require(_baseRate > 0);
require(_additionalBonusAmounts[0] > 0);
for (uint i = 0; i < _additionalBonusAmounts.length - 1; i++) {
require(_additionalBonusAmounts[i] < _additionalBonusAmounts[i + 1]);
}
kyc = KYC(_kyc);
token = ATC(_token);
vault = RefundVault(_vault);
presale = _presale;
bountyAddress = _bountyAddress;
partnersAddress = _partnersAddress;
ATCReserveLocker = _ATCReserveLocker;
teamLocker = _teamLocker;
ATCController = _tokenController;
maxEtherCap = _maxEtherCap;
minEtherCap = _minEtherCap;
baseRate = _baseRate;
additionalBonusAmounts = _additionalBonusAmounts;
initialized = true;
Initialize();
}
function () public payable {
buy(msg.sender);
}
function presaleFallBack(uint256 _presaleWeiRaised) public returns (bool) {
require(!presaleFallBackCalled);
require(msg.sender == presale);
weiRaised = _presaleWeiRaised;
presaleFallBackCalled = true;
PresaleFallBack(_presaleWeiRaised);
return true;
}
function buy(address beneficiary)
public
payable
whenNotPaused
{
// check validity
require(presaleFallBackCalled);
require(beneficiary != 0x00);
require(kyc.registeredAddress(beneficiary));
require(onSale());
require(validPurchase());
require(!isFinalized);
// calculate eth amount
uint256 weiAmount = msg.value;
uint256 toFund;
uint256 postWeiRaised = add(weiRaised, weiAmount);
if (postWeiRaised > maxEtherCap) {
toFund = sub(maxEtherCap, weiRaised);
} else {
toFund = weiAmount;
}
require(toFund > 0);
require(weiAmount >= toFund);
uint256 rate = calculateRate(toFund);
uint256 tokens = mul(toFund, rate);
uint256 toReturn = sub(weiAmount, toFund);
pushInvestorList(msg.sender);
weiRaised = add(weiRaised, toFund);
beneficiaryFunded[beneficiary] = add(beneficiaryFunded[beneficiary], toFund);
token.generateTokens(beneficiary, tokens);
if (toReturn > 0) {
msg.sender.transfer(toReturn);
}
forwardFunds(toFund);
CrowdSaleTokenPurchase(msg.sender, beneficiary, toFund, tokens);
}
function pushInvestorList(address investor) internal {
if (!inInvestorList[investor]) {
inInvestorList[investor] = true;
investorList.push(investor);
PushInvestorList(investor);
}
}
function validPurchase() internal view returns (bool) {
bool nonZeroPurchase = msg.value != 0;
return nonZeroPurchase && !maxReached();
}
function forwardFunds(uint256 toFund) internal {
vault.deposit.value(toFund)(msg.sender);
}
/**
* @dev Checks whether minEtherCap is reached
* @return true if min ether cap is reaced
*/
function minReached() public view returns (bool) {
return weiRaised >= minEtherCap;
}
/**
* @dev Checks whether maxEtherCap is reached
* @return true if max ether cap is reaced
*/
function maxReached() public view returns (bool) {
return weiRaised == maxEtherCap;
}
function getPeriodBonus() public view returns (uint256) {
bool nowOnSale;
uint256 currentPeriod;
for (uint i = 0; i < periods.length; i++) {
if (periods[i].startTime <= now && now <= periods[i].endTime) {
nowOnSale = true;
currentPeriod = i;
break;
}
}
require(nowOnSale);
return periods[currentPeriod].bonus;
}
/**
* @dev rate = baseRate * (100 + bonus) / 100
*/
function calculateRate(uint256 toFund) public view returns (uint256) {
uint bonus = getPeriodBonus();
// bonus for eth amount
if (additionalBonusAmounts[0] <= toFund) {
bonus = add(bonus, 5); // 5% amount bonus for more than 300 ETH
}
if (additionalBonusAmounts[1] <= toFund) {
bonus = add(bonus, 5); // 10% amount bonus for more than 6000 ETH
}
if (additionalBonusAmounts[2] <= toFund) {
bonus = 25; // final 25% amount bonus for more than 8000 ETH
}
if (additionalBonusAmounts[3] <= toFund) {
bonus = 30; // final 30% amount bonus for more than 10000 ETH
}
return div(mul(baseRate, add(bonus, 100)), 100);
}
function startPeriod(uint256 _startTime, uint256 _endTime) public onlyOwner returns (bool) {
require(periods.length < MAX_PERIOD_COUNT);
require(now < _startTime && _startTime < _endTime);
if (periods.length != 0) {
require(sub(_endTime, _startTime) <= 7 days);
require(periods[periods.length - 1].endTime < _startTime);
}
// 15% -> 10% -> 5% -> 0%
Period memory newPeriod;
newPeriod.startTime = _startTime;
newPeriod.endTime = _endTime;
if(periods.length < 3) {
newPeriod.bonus = sub(15, mul(5, periods.length));
} else {
newPeriod.bonus = 0;
}
periods.push(newPeriod);
StartPeriod(_startTime, _endTime, newPeriod.bonus);
return true;
}
function onSale() public returns (bool) {
bool nowOnSale;
for (uint i = 0; i < periods.length; i++) {
if (periods[i].startTime <= now && now <= periods[i].endTime) {
nowOnSale = true;
break;
}
}
return nowOnSale;
}
/**
* @dev should be called after crowdsale ends, to do
*/
function finalize() onlyOwner {
require(!isFinalized);
require(!onSale() || maxReached());
finalizedTime = now;
finalization();
Finalized();
isFinalized = true;
}
/**
* @dev end token minting on finalization, mint tokens for dev team and reserve wallets
*/
function finalization() internal {
if (minReached()) {
vault.close();
uint256 totalToken = token.totalSupply();
// token distribution : 50% for sale, 5% for bounty, 15% for partners, 15% for reserve, 15% for team
uint256 bountyAmount = div(mul(totalToken, 5), 50);
uint256 partnersAmount = div(mul(totalToken, 15), 50);
uint256 reserveAmount = div(mul(totalToken, 15), 50);
uint256 teamAmount = div(mul(totalToken, 15), 50);
distributeToken(bountyAmount, partnersAmount, reserveAmount, teamAmount);
token.enableTransfers(true);
} else {
vault.enableRefunds();
}
token.finishGenerating();
token.changeController(ATCController);
}
function distributeToken(uint256 bountyAmount, uint256 partnersAmount, uint256 reserveAmount, uint256 teamAmount) internal {
require(bountyAddress != 0x00 && partnersAddress != 0x00);
require(ATCReserveLocker != 0x00 && teamLocker != 0x00);
token.generateTokens(bountyAddress, bountyAmount);
token.generateTokens(partnersAddress, partnersAmount);
token.generateTokens(ATCReserveLocker, reserveAmount);
token.generateTokens(teamLocker, teamAmount);
}
/**
* @dev refund a lot of investors at a time checking onlyOwner
* @param numToRefund uint256 The number of investors to refund
*/
function refundAll(uint256 numToRefund) onlyOwner {
require(isFinalized);
require(!minReached());
require(numToRefund > 0);
uint256 limit = refundCompleted + numToRefund;
if (limit > investorList.length) {
limit = investorList.length;
}
for(uint256 i = refundCompleted; i < limit; i++) {
vault.refund(investorList[i]);
}
refundCompleted = limit;
RefundAll(numToRefund);
}
/**
* @dev if crowdsale is unsuccessful, investors can claim refunds here
* @param investor address The account to be refunded
*/
function claimRefund(address investor) returns (bool) {
require(isFinalized);
require(!minReached());
return vault.refund(investor);
}
function claimTokens(address _claimToken) public onlyOwner {
if (token.controller() == address(this)) {
token.claimTokens(_claimToken);
}
if (_claimToken == 0x0) {
owner.transfer(this.balance);
return;
}
ERC20Basic claimToken = ERC20Basic(_claimToken);
uint256 balance = claimToken.balanceOf(this);
claimToken.transfer(owner, balance);
ClaimedTokens(_claimToken, owner, balance);
}
}
/**
* @title TokenTimelock
* @dev TokenTimelock is a token holder contract that will allow a
* beneficiary to extract the tokens after a given release time
*/
contract ReserveLocker is SafeMath{
using SafeERC20 for ERC20Basic;
ERC20Basic public token;
ATCCrowdSale public crowdsale;
address public beneficiary;
function ReserveLocker(address _token, address _crowdsale, address _beneficiary) {
require(_token != 0x00);
require(_crowdsale != 0x00);
require(_beneficiary != 0x00);
token = ERC20Basic(_token);
crowdsale = ATCCrowdSale(_crowdsale);
beneficiary = _beneficiary;
}
/**
* @notice Transfers tokens held by timelock to beneficiary.
*/
function release() public {
uint256 finalizedTime = crowdsale.finalizedTime();
require(finalizedTime > 0 && now > add(finalizedTime, 2 years));
uint256 amount = token.balanceOf(this);
require(amount > 0);
token.safeTransfer(beneficiary, amount);
}
function setToken(address newToken) public {
require(msg.sender == beneficiary);
require(newToken != 0x00);
token = ERC20Basic(newToken);
}
}
/**
* @title TokenTimelock
* @dev TokenTimelock is a token holder contract that will allow a
* beneficiary to extract the tokens after a given release time
*/
contract TeamLocker is SafeMath{
using SafeERC20 for ERC20Basic;
ERC20Basic public token;
ATCCrowdSale public crowdsale;
address[] public beneficiaries;
uint256 public collectedTokens;
function TeamLocker(address _token, address _crowdsale, address[] _beneficiaries) {
require(_token != 0x00);
require(_crowdsale != 0x00);
for (uint i = 0; i < _beneficiaries.length; i++) {
require(_beneficiaries[i] != 0x00);
}
token = ERC20Basic(_token);
crowdsale = ATCCrowdSale(_crowdsale);
beneficiaries = _beneficiaries;
}
/**
* @notice Transfers tokens held by timelock to beneficiary.
*/
function release() public {
uint256 balance = token.balanceOf(address(this));
uint256 total = add(balance, collectedTokens);
uint256 finalizedTime = crowdsale.finalizedTime();
require(finalizedTime > 0);
uint256 lockTime1 = add(finalizedTime, 183 days); // 6 months
uint256 lockTime2 = add(finalizedTime, 1 years); // 1 year
uint256 currentRatio = 20;
if (now >= lockTime1) {
currentRatio = 50;
}
if (now >= lockTime2) {
currentRatio = 100;
}
uint256 releasedAmount = div(mul(total, currentRatio), 100);
uint256 grantAmount = sub(releasedAmount, collectedTokens);
require(grantAmount > 0);
collectedTokens = add(collectedTokens, grantAmount);
uint256 grantAmountForEach = div(grantAmount, 3);
for (uint i = 0; i < beneficiaries.length; i++) {
token.safeTransfer(beneficiaries[i], grantAmountForEach);
}
}
function setToken(address newToken) public {
require(newToken != 0x00);
bool isBeneficiary;
for (uint i = 0; i < beneficiaries.length; i++) {
if (msg.sender == beneficiaries[i]) {
isBeneficiary = true;
}
}
require(isBeneficiary);
token = ERC20Basic(newToken);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"name":"startPeriod","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"additionalBonusAmounts","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"toFund","type":"uint256"}],"name":"calculateRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"onSale","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxEtherCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"presaleFallBackCalled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ATCReserveLocker","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"partnersAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minEtherCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamLocker","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_PERIOD_COUNT","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"kyc","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ATCController","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_kyc","type":"address"},{"name":"_token","type":"address"},{"name":"_vault","type":"address"},{"name":"_presale","type":"address"},{"name":"_bountyAddress","type":"address"},{"name":"_partnersAddress","type":"address"},{"name":"_ATCReserveLocker","type":"address"},{"name":"_teamLocker","type":"address"},{"name":"_tokenController","type":"address"},{"name":"_maxEtherCap","type":"uint256"},{"name":"_minEtherCap","type":"uint256"},{"name":"_baseRate","type":"uint256"},{"name":"_additionalBonusAmounts","type":"uint256[]"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"refundCompleted","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"beneficiaryFunded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_presaleWeiRaised","type":"uint256"}],"name":"presaleFallBack","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"minReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"investor","type":"address"}],"name":"claimRefund","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bountyAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_claimToken","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getPeriodBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"numToRefund","type":"uint256"}],"name":"refundAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"periods","outputs":[{"name":"startTime","type":"uint256"},{"name":"endTime","type":"uint256"},{"name":"bonus","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"vault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"presale","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalizedTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_investor","type":"address"},{"indexed":true,"name":"_beneficiary","type":"address"},{"indexed":false,"name":"_toFund","type":"uint256"},{"indexed":false,"name":"_tokens","type":"uint256"}],"name":"CrowdSaleTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_startTime","type":"uint256"},{"indexed":false,"name":"_endTime","type":"uint256"},{"indexed":false,"name":"_bonus","type":"uint256"}],"name":"StartPeriod","type":"event"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_presaleWeiRaised","type":"uint256"}],"name":"PresaleFallBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_investor","type":"address"}],"name":"PushInvestorList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_numToRefund","type":"uint256"}],"name":"RefundAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_claimToken","type":"address"},{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[],"name":"Initialize","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]Contract Creation Code
606060405260008060146101000a81548160ff021916908315150217905550336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061372f8061006d6000396000f3006060604052600436106101ee576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063107d1d55146101f9578063158ef93e1461023d5780631f68f20a1461026a5780632c0657c214610293578063319b0cd2146102ca578063326687b914610301578063326fd5841461032e5780633f4ba83a146103575780634042b66f1461036c5780634bb278f314610395578063577890f6146103aa5780635c975abb146103d75780636584fcce146104045780636a75f03d1461045957806377472b6f146104ae57806380bc99cb146104d75780638456cb591461052c5780638d4e4083146105415780638da5cb5b1461056e5780638e6a2afa146105c357806390135fec146105f257806390d6b45f1461061f578063a06aceb214610674578063a2dc7dcf146106c9578063a6ca322b14610855578063a743fa501461087e578063ad226122146108cb578063af6f964d14610906578063bffa55d514610933578063c516358f14610984578063df8de3e7146109d9578063e382c3e614610a12578063e9fee16f14610a3b578063ea4a110414610a5e578063f088d54714610aa3578063f2fde38b14610ad1578063fbfa77cf14610b0a578063fc0c546a14610b5f578063fdea8e0b14610bb4578063fe67a18914610c09575b6101f733610c32565b005b341561020457600080fd5b6102236004808035906020019091908035906020019091905050611093565b604051808215151515815260200191505060405180910390f35b341561024857600080fd5b610250611280565b604051808215151515815260200191505060405180910390f35b341561027557600080fd5b61027d611293565b6040518082815260200191505060405180910390f35b341561029e57600080fd5b6102b46004808035906020019091905050611299565b6040518082815260200191505060405180910390f35b34156102d557600080fd5b6102eb60048080359060200190919050506112bd565b6040518082815260200191505060405180910390f35b341561030c57600080fd5b6103146113a8565b604051808215151515815260200191505060405180910390f35b341561033957600080fd5b610341611431565b6040518082815260200191505060405180910390f35b341561036257600080fd5b61036a611437565b005b341561037757600080fd5b61037f6114f5565b6040518082815260200191505060405180910390f35b34156103a057600080fd5b6103a86114fb565b005b34156103b557600080fd5b6103bd6115ed565b604051808215151515815260200191505060405180910390f35b34156103e257600080fd5b6103ea611600565b604051808215151515815260200191505060405180910390f35b341561040f57600080fd5b610417611613565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561046457600080fd5b61046c611639565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156104b957600080fd5b6104c161165f565b6040518082815260200191505060405180910390f35b34156104e257600080fd5b6104ea611665565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561053757600080fd5b61053f61168b565b005b341561054c57600080fd5b61055461174b565b604051808215151515815260200191505060405180910390f35b341561057957600080fd5b61058161175e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156105ce57600080fd5b6105d6611783565b604051808260ff1660ff16815260200191505060405180910390f35b34156105fd57600080fd5b610605611788565b604051808215151515815260200191505060405180910390f35b341561062a57600080fd5b610632611796565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561067f57600080fd5b6106876117bc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156106d457600080fd5b610853600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091908035906020019091908035906020019091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437820191505050505050919050506117e2565b005b341561086057600080fd5b610868611d1b565b6040518082815260200191505060405180910390f35b341561088957600080fd5b6108b5600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611d21565b6040518082815260200191505060405180910390f35b34156108d657600080fd5b6108ec6004808035906020019091905050611d39565b604051808215151515815260200191505060405180910390f35b341561091157600080fd5b610919611e15565b604051808215151515815260200191505060405180910390f35b341561093e57600080fd5b61096a600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611e24565b604051808215151515815260200191505060405180910390f35b341561098f57600080fd5b610997611f3c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156109e457600080fd5b610a10600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611f62565b005b3415610a1d57600080fd5b610a2561247a565b6040518082815260200191505060405180910390f35b3415610a4657600080fd5b610a5c6004808035906020019091905050612535565b005b3415610a6957600080fd5b610a7f6004808035906020019091905050612767565b60405180848152602001838152602001828152602001935050505060405180910390f35b610acf600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610c32565b005b3415610adc57600080fd5b610b08600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506127a0565b005b3415610b1557600080fd5b610b1d61287a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3415610b6a57600080fd5b610b726128a0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3415610bbf57600080fd5b610bc76128c6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3415610c1457600080fd5b610c1c6128ec565b6040518082815260200191505060405180910390f35b600080600080600080600060149054906101000a900460ff16151515610c5757600080fd5b601460009054906101000a900460ff161515610c7257600080fd5b60008773ffffffffffffffffffffffffffffffffffffffff1614151515610c9857600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad1def42886000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515610d5d57600080fd5b6102c65a03f11515610d6e57600080fd5b505050604051805190501515610d8357600080fd5b610d8b6113a8565b1515610d9657600080fd5b610d9e6128f2565b1515610da957600080fd5b601260149054906101000a900460ff16151515610dc557600080fd5b349550610dd4600c5487612914565b9350600d54841115610df557610dee600d54600c54612932565b9450610df9565b8594505b600085111515610e0857600080fd5b848610151515610e1757600080fd5b610e20856112bd565b9250610e2c858461294b565b9150610e388686612932565b9050610e433361297e565b610e4f600c5486612914565b600c81905550610e9e600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612914565b600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c088846000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1515610fae57600080fd5b6102c65a03f11515610fbf57600080fd5b50505060405180519050506000811115611014573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561101357600080fd5b5b61101d85612af3565b8673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f33759ee1eaa9f87f4186d31caf548c4494b9cef9fa6a2805ef0efd615fb182ff8785604051808381526020018281526020019250505060405180910390a350505050505050565b600061109d6135da565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156110f857600080fd5b600860ff16600b8054905010151561110f57600080fd5b834210801561111d57508284105b151561112857600080fd5b6000600b805490501415156111895762093a806111458486612932565b1115151561115257600080fd5b83600b6001600b805490500381548110151561116a57fe5b90600052602060002090600302016001015410151561118857600080fd5b5b83816000018181525050828160200181815250506003600b8054905010156111d3576111c5600f6111c06005600b8054905061294b565b612932565b8160400181815250506111df565b60008160400181815250505b600b80548060010182816111f391906135fc565b916000526020600020906003020160008390919091506000820151816000015560208201518160010155604082015181600201555050507f1652a9d372dbc4e65f222c8c7545fd38bc190a6ee6139be8d59ae45e101320a98484836040015160405180848152602001838152602001828152602001935050505060405180910390a1600191505092915050565b601660009054906101000a900460ff1681565b60095481565b600a818154811015156112a857fe5b90600052602060002090016000915090505481565b6000806112c861247a565b905082600a60008154811015156112db57fe5b9060005260206000209001541115156112fc576112f9816005612914565b90505b82600a600181548110151561130d57fe5b90600052602060002090015411151561132e5761132b816005612914565b90505b82600a600281548110151561133f57fe5b90600052602060002090015411151561135757601990505b82600a600381548110151561136857fe5b90600052602060002090015411151561138057601e90505b6113a0611399600954611394846064612914565b61294b565b6064612bc7565b915050919050565b60008060008090505b600b805490508110156114295742600b828154811015156113ce57fe5b9060005260206000209060030201600001541115801561140e5750600b818154811015156113f857fe5b9060005260206000209060030201600101544211155b1561141c5760019150611429565b80806001019150506113b1565b819250505090565b600d5481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561149257600080fd5b600060149054906101000a900460ff1615156114ad57600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600c5481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561155657600080fd5b601260149054906101000a900460ff1615151561157257600080fd5b61157a6113a8565b158061158a5750611589611788565b5b151561159557600080fd5b426015819055506115a4612be2565b7f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768160405160405180910390a16001601260146101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b600060149054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156116e657600080fd5b600060149054906101000a900460ff1615151561170257600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b601260149054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600881565b6000600d54600c5414905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561183f57600080fd5b601660009054906101000a900460ff1615151561185b57600080fd5b60008e73ffffffffffffffffffffffffffffffffffffffff1614158015611899575060008d73ffffffffffffffffffffffffffffffffffffffff1614155b80156118bc575060008c73ffffffffffffffffffffffffffffffffffffffff1614155b80156118df575060008b73ffffffffffffffffffffffffffffffffffffffff1614155b15156118ea57600080fd5b60008a73ffffffffffffffffffffffffffffffffffffffff1614158015611928575060008973ffffffffffffffffffffffffffffffffffffffff1614155b151561193357600080fd5b60008873ffffffffffffffffffffffffffffffffffffffff1614158015611971575060008773ffffffffffffffffffffffffffffffffffffffff1614155b151561197c57600080fd5b60008673ffffffffffffffffffffffffffffffffffffffff16141515156119a257600080fd5b8360001080156119b157508484105b15156119bc57600080fd5b6000831115156119cb57600080fd5b60008260008151811015156119dc57fe5b906020019060200201511115156119f257600080fd5b600090505b6001825103811015611a4f578160018201815181101515611a1457fe5b906020019060200201518282815181101515611a2c57fe5b90602001906020020151101515611a4257600080fd5b80806001019150506119f7565b8d600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508c600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508a600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555089600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555088600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600d8190555083600e819055508260098190555081600a9080519060200190611cc392919061362e565b506001601660006101000a81548160ff0219169083151502179055507f80f860092ed8101278311dd6b10dda4920a40ea5dfcbacfe724e2accfaf63efc60405160405180910390a15050505050505050505050505050565b60135481565b600f6020528060005260406000206000915090505481565b6000601460009054906101000a900460ff16151515611d5757600080fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611db357600080fd5b81600c819055506001601460006101000a81548160ff0219169083151502179055507f502f53b79a6dda15d69bda5f43dda250173e0f669d80b10106313bc99a439be5826040518082815260200191505060405180910390a160019050919050565b6000600e54600c541015905090565b6000601260149054906101000a900460ff161515611e4157600080fd5b611e49611e15565b151515611e5557600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa89401a836000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515611f1a57600080fd5b6102c65a03f11515611f2b57600080fd5b505050604051805190509050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611fc057600080fd5b3073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f77c47916000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561206557600080fd5b6102c65a03f1151561207657600080fd5b5050506040518051905073ffffffffffffffffffffffffffffffffffffffff16141561216d57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df8de3e7846040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b151561215857600080fd5b6102c65a03f1151561216957600080fd5b5050505b60008373ffffffffffffffffffffffffffffffffffffffff161415612209576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050151561220457600080fd5b612475565b8291508173ffffffffffffffffffffffffffffffffffffffff166370a08231306000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15156122af57600080fd5b6102c65a03f115156122c057600080fd5b5050506040518051905090508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561239857600080fd5b6102c65a03f115156123a957600080fd5b50505060405180519050507ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15b505050565b600080600080600090505b600b805490508110156125005742600b828154811015156124a257fe5b906000526020600020906003020160000154111580156124e25750600b818154811015156124cc57fe5b9060005260206000209060030201600101544211155b156124f35760019250809150612500565b8080600101915050612485565b82151561250c57600080fd5b600b8281548110151561251b57fe5b906000526020600020906003020160020154935050505090565b6000806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561259357600080fd5b601260149054906101000a900460ff1615156125ae57600080fd5b6125b6611e15565b1515156125c257600080fd5b6000831115156125d157600080fd5b826013540191506010805490508211156125ee5760108054905091505b60135490505b8181101561272457600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa89401a60108381548110151561264957fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15156126fb57600080fd5b6102c65a03f1151561270c57600080fd5b505050604051805190505080806001019150506125f4565b816013819055507fa70a53972d6afb0fc38bd683cd5955faa5fa55e6629744a51e7a2aaa0ecc4e04836040518082815260200191505060405180910390a1505050565b600b8181548110151561277657fe5b90600052602060002090600302016000915090508060000154908060010154908060020154905083565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156127fb57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561283757600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6000806000341415905080801561290e575061290c611788565b155b91505090565b600080828401905083811015151561292857fe5b8091505092915050565b600082821115151561294057fe5b818303905092915050565b6000808284029050600084148061296c575082848281151561296957fe5b04145b151561297457fe5b8091505092915050565b601160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515612af0576001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060108054806001018281612a3d919061367b565b9160005260206000209001600083909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550507f1095f211ec26cf9891a79b12717df016e5e06954063d8534ac589273c0ed2eb281604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f340fa0182336040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506000604051808303818588803b1515612baf57600080fd5b6125ee5a03f11515612bc057600080fd5b5050505050565b6000808284811515612bd557fe5b0490508091505092915050565b6000806000806000612bf2611e15565b15612e5157600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166343d726d66040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b1515612c7c57600080fd5b6102c65a03f11515612c8d57600080fd5b505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1515612d1e57600080fd5b6102c65a03f11515612d2f57600080fd5b505050604051805190509450612d50612d4986600561294b565b6032612bc7565b9350612d67612d6086600f61294b565b6032612bc7565b9250612d7e612d7786600f61294b565b6032612bc7565b9150612d95612d8e86600f61294b565b6032612bc7565b9050612da38484848461308e565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f41e60c560016040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082151515158152602001915050600060405180830381600087803b1515612e3857600080fd5b6102c65a03f11515612e4957600080fd5b505050612eeb565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c52dc416040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b1515612ed657600080fd5b6102c65a03f11515612ee757600080fd5b5050505b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a4d67d636000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1515612f7957600080fd5b6102c65a03f11515612f8a57600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633cebb823601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b151561307357600080fd5b6102c65a03f1151561308457600080fd5b5050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561311057506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b151561311b57600080fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561319d57506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15156131a857600080fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561329757600080fd5b6102c65a03f115156132a857600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156133a257600080fd5b6102c65a03f115156133b357600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156134ad57600080fd5b6102c65a03f115156134be57600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156135b857600080fd5b6102c65a03f115156135c957600080fd5b505050604051805190505050505050565b6060604051908101604052806000815260200160008152602001600081525090565b8154818355818115116136295760030281600302836000526020600020918201910161362891906136a7565b5b505050565b82805482825590600052602060002090810192821561366a579160200282015b8281111561366957825182559160200191906001019061364e565b5b50905061367791906136de565b5090565b8154818355818115116136a2578183600052602060002091820191016136a191906136de565b5b505050565b6136db91905b808211156136d75760008082016000905560018201600090556002820160009055506003016136ad565b5090565b90565b61370091905b808211156136fc5760008160009055506001016136e4565b5090565b905600a165627a7a723058200692835f4ff6f4122649f86c58f62cc315a9a7105b8d35a3a5bfa0bf5b4916ef0029
Deployed Bytecode
0x6060604052600436106101ee576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063107d1d55146101f9578063158ef93e1461023d5780631f68f20a1461026a5780632c0657c214610293578063319b0cd2146102ca578063326687b914610301578063326fd5841461032e5780633f4ba83a146103575780634042b66f1461036c5780634bb278f314610395578063577890f6146103aa5780635c975abb146103d75780636584fcce146104045780636a75f03d1461045957806377472b6f146104ae57806380bc99cb146104d75780638456cb591461052c5780638d4e4083146105415780638da5cb5b1461056e5780638e6a2afa146105c357806390135fec146105f257806390d6b45f1461061f578063a06aceb214610674578063a2dc7dcf146106c9578063a6ca322b14610855578063a743fa501461087e578063ad226122146108cb578063af6f964d14610906578063bffa55d514610933578063c516358f14610984578063df8de3e7146109d9578063e382c3e614610a12578063e9fee16f14610a3b578063ea4a110414610a5e578063f088d54714610aa3578063f2fde38b14610ad1578063fbfa77cf14610b0a578063fc0c546a14610b5f578063fdea8e0b14610bb4578063fe67a18914610c09575b6101f733610c32565b005b341561020457600080fd5b6102236004808035906020019091908035906020019091905050611093565b604051808215151515815260200191505060405180910390f35b341561024857600080fd5b610250611280565b604051808215151515815260200191505060405180910390f35b341561027557600080fd5b61027d611293565b6040518082815260200191505060405180910390f35b341561029e57600080fd5b6102b46004808035906020019091905050611299565b6040518082815260200191505060405180910390f35b34156102d557600080fd5b6102eb60048080359060200190919050506112bd565b6040518082815260200191505060405180910390f35b341561030c57600080fd5b6103146113a8565b604051808215151515815260200191505060405180910390f35b341561033957600080fd5b610341611431565b6040518082815260200191505060405180910390f35b341561036257600080fd5b61036a611437565b005b341561037757600080fd5b61037f6114f5565b6040518082815260200191505060405180910390f35b34156103a057600080fd5b6103a86114fb565b005b34156103b557600080fd5b6103bd6115ed565b604051808215151515815260200191505060405180910390f35b34156103e257600080fd5b6103ea611600565b604051808215151515815260200191505060405180910390f35b341561040f57600080fd5b610417611613565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561046457600080fd5b61046c611639565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156104b957600080fd5b6104c161165f565b6040518082815260200191505060405180910390f35b34156104e257600080fd5b6104ea611665565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561053757600080fd5b61053f61168b565b005b341561054c57600080fd5b61055461174b565b604051808215151515815260200191505060405180910390f35b341561057957600080fd5b61058161175e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156105ce57600080fd5b6105d6611783565b604051808260ff1660ff16815260200191505060405180910390f35b34156105fd57600080fd5b610605611788565b604051808215151515815260200191505060405180910390f35b341561062a57600080fd5b610632611796565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561067f57600080fd5b6106876117bc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156106d457600080fd5b610853600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091908035906020019091908035906020019091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437820191505050505050919050506117e2565b005b341561086057600080fd5b610868611d1b565b6040518082815260200191505060405180910390f35b341561088957600080fd5b6108b5600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611d21565b6040518082815260200191505060405180910390f35b34156108d657600080fd5b6108ec6004808035906020019091905050611d39565b604051808215151515815260200191505060405180910390f35b341561091157600080fd5b610919611e15565b604051808215151515815260200191505060405180910390f35b341561093e57600080fd5b61096a600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611e24565b604051808215151515815260200191505060405180910390f35b341561098f57600080fd5b610997611f3c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156109e457600080fd5b610a10600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611f62565b005b3415610a1d57600080fd5b610a2561247a565b6040518082815260200191505060405180910390f35b3415610a4657600080fd5b610a5c6004808035906020019091905050612535565b005b3415610a6957600080fd5b610a7f6004808035906020019091905050612767565b60405180848152602001838152602001828152602001935050505060405180910390f35b610acf600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610c32565b005b3415610adc57600080fd5b610b08600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506127a0565b005b3415610b1557600080fd5b610b1d61287a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3415610b6a57600080fd5b610b726128a0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3415610bbf57600080fd5b610bc76128c6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3415610c1457600080fd5b610c1c6128ec565b6040518082815260200191505060405180910390f35b600080600080600080600060149054906101000a900460ff16151515610c5757600080fd5b601460009054906101000a900460ff161515610c7257600080fd5b60008773ffffffffffffffffffffffffffffffffffffffff1614151515610c9857600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad1def42886000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515610d5d57600080fd5b6102c65a03f11515610d6e57600080fd5b505050604051805190501515610d8357600080fd5b610d8b6113a8565b1515610d9657600080fd5b610d9e6128f2565b1515610da957600080fd5b601260149054906101000a900460ff16151515610dc557600080fd5b349550610dd4600c5487612914565b9350600d54841115610df557610dee600d54600c54612932565b9450610df9565b8594505b600085111515610e0857600080fd5b848610151515610e1757600080fd5b610e20856112bd565b9250610e2c858461294b565b9150610e388686612932565b9050610e433361297e565b610e4f600c5486612914565b600c81905550610e9e600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612914565b600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c088846000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1515610fae57600080fd5b6102c65a03f11515610fbf57600080fd5b50505060405180519050506000811115611014573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561101357600080fd5b5b61101d85612af3565b8673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f33759ee1eaa9f87f4186d31caf548c4494b9cef9fa6a2805ef0efd615fb182ff8785604051808381526020018281526020019250505060405180910390a350505050505050565b600061109d6135da565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156110f857600080fd5b600860ff16600b8054905010151561110f57600080fd5b834210801561111d57508284105b151561112857600080fd5b6000600b805490501415156111895762093a806111458486612932565b1115151561115257600080fd5b83600b6001600b805490500381548110151561116a57fe5b90600052602060002090600302016001015410151561118857600080fd5b5b83816000018181525050828160200181815250506003600b8054905010156111d3576111c5600f6111c06005600b8054905061294b565b612932565b8160400181815250506111df565b60008160400181815250505b600b80548060010182816111f391906135fc565b916000526020600020906003020160008390919091506000820151816000015560208201518160010155604082015181600201555050507f1652a9d372dbc4e65f222c8c7545fd38bc190a6ee6139be8d59ae45e101320a98484836040015160405180848152602001838152602001828152602001935050505060405180910390a1600191505092915050565b601660009054906101000a900460ff1681565b60095481565b600a818154811015156112a857fe5b90600052602060002090016000915090505481565b6000806112c861247a565b905082600a60008154811015156112db57fe5b9060005260206000209001541115156112fc576112f9816005612914565b90505b82600a600181548110151561130d57fe5b90600052602060002090015411151561132e5761132b816005612914565b90505b82600a600281548110151561133f57fe5b90600052602060002090015411151561135757601990505b82600a600381548110151561136857fe5b90600052602060002090015411151561138057601e90505b6113a0611399600954611394846064612914565b61294b565b6064612bc7565b915050919050565b60008060008090505b600b805490508110156114295742600b828154811015156113ce57fe5b9060005260206000209060030201600001541115801561140e5750600b818154811015156113f857fe5b9060005260206000209060030201600101544211155b1561141c5760019150611429565b80806001019150506113b1565b819250505090565b600d5481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561149257600080fd5b600060149054906101000a900460ff1615156114ad57600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600c5481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561155657600080fd5b601260149054906101000a900460ff1615151561157257600080fd5b61157a6113a8565b158061158a5750611589611788565b5b151561159557600080fd5b426015819055506115a4612be2565b7f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768160405160405180910390a16001601260146101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b600060149054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156116e657600080fd5b600060149054906101000a900460ff1615151561170257600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b601260149054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600881565b6000600d54600c5414905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561183f57600080fd5b601660009054906101000a900460ff1615151561185b57600080fd5b60008e73ffffffffffffffffffffffffffffffffffffffff1614158015611899575060008d73ffffffffffffffffffffffffffffffffffffffff1614155b80156118bc575060008c73ffffffffffffffffffffffffffffffffffffffff1614155b80156118df575060008b73ffffffffffffffffffffffffffffffffffffffff1614155b15156118ea57600080fd5b60008a73ffffffffffffffffffffffffffffffffffffffff1614158015611928575060008973ffffffffffffffffffffffffffffffffffffffff1614155b151561193357600080fd5b60008873ffffffffffffffffffffffffffffffffffffffff1614158015611971575060008773ffffffffffffffffffffffffffffffffffffffff1614155b151561197c57600080fd5b60008673ffffffffffffffffffffffffffffffffffffffff16141515156119a257600080fd5b8360001080156119b157508484105b15156119bc57600080fd5b6000831115156119cb57600080fd5b60008260008151811015156119dc57fe5b906020019060200201511115156119f257600080fd5b600090505b6001825103811015611a4f578160018201815181101515611a1457fe5b906020019060200201518282815181101515611a2c57fe5b90602001906020020151101515611a4257600080fd5b80806001019150506119f7565b8d600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508c600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508a600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555089600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555088600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600d8190555083600e819055508260098190555081600a9080519060200190611cc392919061362e565b506001601660006101000a81548160ff0219169083151502179055507f80f860092ed8101278311dd6b10dda4920a40ea5dfcbacfe724e2accfaf63efc60405160405180910390a15050505050505050505050505050565b60135481565b600f6020528060005260406000206000915090505481565b6000601460009054906101000a900460ff16151515611d5757600080fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611db357600080fd5b81600c819055506001601460006101000a81548160ff0219169083151502179055507f502f53b79a6dda15d69bda5f43dda250173e0f669d80b10106313bc99a439be5826040518082815260200191505060405180910390a160019050919050565b6000600e54600c541015905090565b6000601260149054906101000a900460ff161515611e4157600080fd5b611e49611e15565b151515611e5557600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa89401a836000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515611f1a57600080fd5b6102c65a03f11515611f2b57600080fd5b505050604051805190509050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611fc057600080fd5b3073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f77c47916000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561206557600080fd5b6102c65a03f1151561207657600080fd5b5050506040518051905073ffffffffffffffffffffffffffffffffffffffff16141561216d57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df8de3e7846040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b151561215857600080fd5b6102c65a03f1151561216957600080fd5b5050505b60008373ffffffffffffffffffffffffffffffffffffffff161415612209576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050151561220457600080fd5b612475565b8291508173ffffffffffffffffffffffffffffffffffffffff166370a08231306000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15156122af57600080fd5b6102c65a03f115156122c057600080fd5b5050506040518051905090508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561239857600080fd5b6102c65a03f115156123a957600080fd5b50505060405180519050507ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15b505050565b600080600080600090505b600b805490508110156125005742600b828154811015156124a257fe5b906000526020600020906003020160000154111580156124e25750600b818154811015156124cc57fe5b9060005260206000209060030201600101544211155b156124f35760019250809150612500565b8080600101915050612485565b82151561250c57600080fd5b600b8281548110151561251b57fe5b906000526020600020906003020160020154935050505090565b6000806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561259357600080fd5b601260149054906101000a900460ff1615156125ae57600080fd5b6125b6611e15565b1515156125c257600080fd5b6000831115156125d157600080fd5b826013540191506010805490508211156125ee5760108054905091505b60135490505b8181101561272457600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa89401a60108381548110151561264957fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15156126fb57600080fd5b6102c65a03f1151561270c57600080fd5b505050604051805190505080806001019150506125f4565b816013819055507fa70a53972d6afb0fc38bd683cd5955faa5fa55e6629744a51e7a2aaa0ecc4e04836040518082815260200191505060405180910390a1505050565b600b8181548110151561277657fe5b90600052602060002090600302016000915090508060000154908060010154908060020154905083565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156127fb57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561283757600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6000806000341415905080801561290e575061290c611788565b155b91505090565b600080828401905083811015151561292857fe5b8091505092915050565b600082821115151561294057fe5b818303905092915050565b6000808284029050600084148061296c575082848281151561296957fe5b04145b151561297457fe5b8091505092915050565b601160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515612af0576001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060108054806001018281612a3d919061367b565b9160005260206000209001600083909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550507f1095f211ec26cf9891a79b12717df016e5e06954063d8534ac589273c0ed2eb281604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f340fa0182336040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506000604051808303818588803b1515612baf57600080fd5b6125ee5a03f11515612bc057600080fd5b5050505050565b6000808284811515612bd557fe5b0490508091505092915050565b6000806000806000612bf2611e15565b15612e5157600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166343d726d66040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b1515612c7c57600080fd5b6102c65a03f11515612c8d57600080fd5b505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1515612d1e57600080fd5b6102c65a03f11515612d2f57600080fd5b505050604051805190509450612d50612d4986600561294b565b6032612bc7565b9350612d67612d6086600f61294b565b6032612bc7565b9250612d7e612d7786600f61294b565b6032612bc7565b9150612d95612d8e86600f61294b565b6032612bc7565b9050612da38484848461308e565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f41e60c560016040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082151515158152602001915050600060405180830381600087803b1515612e3857600080fd5b6102c65a03f11515612e4957600080fd5b505050612eeb565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c52dc416040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b1515612ed657600080fd5b6102c65a03f11515612ee757600080fd5b5050505b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a4d67d636000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1515612f7957600080fd5b6102c65a03f11515612f8a57600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633cebb823601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b151561307357600080fd5b6102c65a03f1151561308457600080fd5b5050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561311057506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b151561311b57600080fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561319d57506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15156131a857600080fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561329757600080fd5b6102c65a03f115156132a857600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156133a257600080fd5b6102c65a03f115156133b357600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156134ad57600080fd5b6102c65a03f115156134be57600080fd5b5050506040518051905050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663827f32c0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156135b857600080fd5b6102c65a03f115156135c957600080fd5b505050604051805190505050505050565b6060604051908101604052806000815260200160008152602001600081525090565b8154818355818115116136295760030281600302836000526020600020918201910161362891906136a7565b5b505050565b82805482825590600052602060002090810192821561366a579160200282015b8281111561366957825182559160200191906001019061364e565b5b50905061367791906136de565b5090565b8154818355818115116136a2578183600052602060002091820191016136a191906136de565b5b505050565b6136db91905b808211156136d75760008082016000905560018201600090556002820160009055506003016136ad565b5090565b90565b61370091905b808211156136fc5760008160009055506001016136e4565b5090565b905600a165627a7a723058200692835f4ff6f4122649f86c58f62cc315a9a7105b8d35a3a5bfa0bf5b4916ef0029
Swarm Source
bzzr://0692835f4ff6f4122649f86c58f62cc315a9a7105b8d35a3a5bfa0bf5b4916ef
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
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.